forked from saltycrane/kage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.73 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
{
"name": "kage",
"version": "0.2.2",
"dependencies": {
"axios": "0.16.2",
"firebase": "3.9.0",
"next": "3.0.1-beta.5",
"query-string": "4.3.4",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-redux": "5.0.6",
"react-transition-group": "1.2.0",
"reactstrap": "4.8.0",
"redux": "3.7.2",
"redux-promise-memo": "0.2.1",
"redux-thunk": "2.2.0",
"reselect": "3.0.1",
"styled-components": "2.1.0"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"babel-plugin-styled-components": "1.1.6",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.5.2",
"babel-preset-react": "6.24.1",
"babel-register": "6.24.1",
"benchmark": "2.1.4",
"cross-env": "5.0.5",
"eslint": "3.19.0",
"eslint-config-react-app": "1.0.5",
"eslint-plugin-flowtype": "2.34.1",
"eslint-plugin-import": "2.6.1",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.1.0",
"flow-bin": "0.53.1",
"prettier": "1.12.0",
"serve": "6.2.0",
"webpack-bundle-analyzer": "2.9.1"
},
"scripts": {
"analyze": "cross-env ANALYZE=1 next build",
"benchmark": "NODE_ENV=production node ./scripts/runBenchmarks.js",
"build": "next build",
"dev": "next",
"eslint": "eslint .",
"export": "next build && next export",
"flow": "flow version && flow",
"lint": "yarn eslint && yarn prettier && yarn flow && yarn benchmark",
"prettier": "prettier --write --print-width 100 --trailing-comma all \"{actions,components,lib,pages,reducers}/**/*.js\" \"{constants,types}.js\"",
"serve": "serve -s out",
"start": "next start"
}
}