-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
124 lines (124 loc) · 3.84 KB
/
package.json
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
{
"name": "dna-frontend",
"version": "0.1.0",
"engines": {
"node": "10.16.0",
"yarn": "1.16.0"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node server/index.js",
"start:dev": "yarn clean && cross-env NODE_ENV=development node server/index.js",
"start:prod": "yarn run clean && cross-env NODE_ENV=production node server/index.js",
"format": "prettier --single-quote --semi=false --write '{src,server,webpack}/**/*. js' && eslint --fix src server webpack",
"clean": "rimraf buildClient buildServer",
"clean:prod": "rm -rf buildClient buildServer",
"lint": "./node_modules/.bin/eslint ./src/**/*.js",
"flow": "flow",
"flow start": "flow start",
"flow stop": "flow stop",
"add-locale": "lingui add-locale",
"extract": "lingui extract",
"compile": "lingui compile",
"lint:css": "stylelint './src/**/*.js'",
"heroku-prebuild": "yarn clean:prod"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint:css && yarn flow && yarn lint"
}
},
"lingui": {
"sourceLocale": "en",
"pseudoLocale": "pseudolocalization"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {},
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@lingui/cli": "^2.8.1",
"@lingui/macro": "^2.8.1",
"babel-watch": "^7.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"dotenv-webpack": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-flowtype": "^3.9.0",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"lint-staged": "^8.1.7",
"prettier": "1.17.1",
"rimraf": "^2.6.3",
"stylelint": "^10.0.1",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.7.0",
"webpack": "^4.32.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-hot-server-middleware": "^0.6.0",
"write-file-webpack-plugin": "^4.5.0",
"@babel/runtime": "^7.4.5",
"@lingui/react": "^2.8.1",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-macros": "^2.5.1",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-universal-import": "^4.0.0",
"flow-bin": "^0.98.1",
"colors": "^1.3.3",
"express": "^4.17.0",
"express-no-favicons": "^0.0.1",
"extract-css-chunks-webpack-plugin": "^4.5.1",
"history": "^4.9.0",
"husky": "^2.3.0",
"pusher-js": "^4.4.0",
"react": "^16.8.6",
"react-dom": "npm:@hot-loader/react-dom",
"react-helmet": "^5.2.1",
"react-onclickoutside": "^6.8.0",
"react-redux": "^7.0.3",
"react-universal-component": "^4.0.0",
"redux": "^4.0.1",
"redux-first-router": "^2.1.1",
"redux-first-router-link": "^2.1.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"styled-components": "^4.2.0",
"url-loader": "^1.1.2",
"webpack-combine-loaders": "^2.0.4",
"webpack-hot-middleware": "^2.25.0",
"webpack-hot-server-middleware": "^0.6.0",
"webpack-dev-middleware": "^3.7.0",
"webpack-flush-chunks": "^2.0.3"
}
}