This repository was archived by the owner on Aug 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 3.94 KB
/
package.json
File metadata and controls
140 lines (140 loc) · 3.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "bbf-app",
"version": "1.0.0",
"main": "index.js",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production next build",
"build:analyze": "cross-env BUNDLE_ANALYZE=both yarn build",
"build:export": "yarn build && next export -o ./dist",
"start": "yarn build && cross-env NODE_ENV=production node ./index.js",
"start:dev": "cross-env NODE_ENV=development LOGGER_LEVEL=debug nodemon --watch ./src/server ./index.js",
"lint": "eslint ./src --ext .js,.jsx && stylelint \"src/**/*.css\" --syntax scss",
"test": "cross-env LOGGER_ENABLED=false BABEL_ENV=test jest",
"test:coverage": "yarn test --coverage",
"precommit": "yarn lint-staged",
"prepush": "yarn test"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@sendgrid/mail": "^6.2.0",
"@zeit/next-bundle-analyzer": "^0.1.1",
"@zeit/next-css": "^0.2.0",
"@zeit/next-mdxc": "^1.0.0",
"autoprefixer": "^7.2.5",
"babel-plugin-add-react-displayname": "0.0.5",
"babel-plugin-inline-react-svg": "^0.5.2",
"body-parser": "^1.18.3",
"classnames": "^2.2.5",
"compression": "^1.7.1",
"cross-env": "^5.0.0",
"css-loader": "^0.28.9",
"cssnano": "^3.10.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-rate-limit": "^2.11.0",
"extracted-loader": "^1.0.4",
"file-loader": "^1.1.6",
"formik": "^0.11.11",
"glob-all": "^3.1.0",
"img-loader": "^2.0.0",
"joi": "^10.5.0",
"next": "^6.1.1",
"postcss-color-function": "^4.0.1",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.10",
"postcss-nested": "^3.0.0",
"postcss-scss": "^1.0.3",
"prop-types": "^15.6.1",
"purgecss-webpack-plugin": "^0.19.0",
"raw-loader": "^0.5.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-ga": "^2.4.1",
"react-lazyload": "^2.3.0",
"react-scroll-to-component": "^1.0.2",
"recompose": "^0.26.0",
"tailwind-react-ui": "^0.7.2",
"tailwindcss": "^0.6.4",
"url-loader": "^0.6.2",
"webfontloader": "^1.6.28",
"winston": "^2.3.1",
"yup": "^0.24.1"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"husky": "^0.13.3",
"jest": "^22.3.0",
"lint-staged": "^7.0.2",
"nodemon": "^1.11.0",
"prettier": "^1.14.2",
"stylelint": "^8.4.0",
"stylelint-config-recommended": "^2.0.1"
},
"engines": {
"node": "^8.10.0",
"yarn": "^1.5.1"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.css": [
"stylelint --syntax scss"
]
},
"jest": {
"collectCoverageFrom": [
"**/*.js",
"**/*.jsx",
"!**/node_modules/**"
],
"moduleDirectories": [
"node_modules",
"src"
],
"roots": [
"./src"
],
"resetModules": true,
"setupFiles": [
"./src/build/jest/mocks/requestAnimationFrame.js",
"./src/build/jest/setup/enzyme.js"
],
"moduleNameMapper": {
"^.+\\.(svg)$": "<rootDir>/build/jest/mocks/file.js",
"^.+\\.(css)$": "<rootDir>/build/jest/mocks/file.js",
"^.+\\.(jpg|jpeg|png|gif|bmp)$": "<rootDir>/build/jest/mocks/file.js"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/__mocks__/",
"/__setup__/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testURL": "http://localhost/"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}