-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.16 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
{
"name": "primos",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest",
"dev": "node ./server/server.js",
"build": "next build",
"lint": "standard 'components/**/*.js' 'lib/**/*.js' 'pages/**/*.js' 'server/**/*.js' '*.js' '__test__/**/*.js'",
"precommit": "lint-staged",
"export": "next export",
"flow": "flow",
"start": "NODE_ENV=production node ./server/server.js",
"analyze": "cross-env ANALYZE=1 next build",
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add out/ && git commit -m \"Deploy Next.js to primos\" && git subtree push --prefix out origin gh-pages"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-client": "^2.3.1",
"apollo-client-preset": "^1.0.8",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.3",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-styled-components": "^1.5.1",
"bootstrap": "^4.1.1",
"cross-env": "^5.1.5",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-anywhere": "^4.1.10",
"graphql-tag": "^2.9.2",
"isomorphic-unfetch": "^2.0.0",
"next": "^6.0.1",
"next-redux-wrapper": "^2.0.0-beta.6",
"nprogress": "^0.2.0",
"octicons": "^7.3.0",
"prop-types": "^15.6.1",
"prop-types-exact": "^1.1.2",
"react": "^16.3.2",
"react-apollo": "^2.1.4",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.3.2",
"react-lazyload": "^2.3.0",
"react-redux": "^5.0.7",
"reactstrap": "^6.0.1",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.3.0",
"redux-form-website-template": "0.0.122",
"redux-thunk": "^2.2.0",
"styled-components": "^3.2.6"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-imports": "^1.5.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-jsx": "^5.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.72.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.1.1",
"now": "^11.1.11",
"package-size": "^2.1.0",
"prettier": "1.12.1",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.3.2",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"webpack-bundle-analyzer": "^2.8.3"
},
"standard": {
"ignore": [
"/out/"
],
"parser": "babel-eslint",
"plugins": [
"flowtype"
],
"globals": [ "alert", "FormData" ]
},
"lint-staged": {
"*.js": "standard"
},
"eslintIgnore": [
"next.config.js",
"jest.config.js",
"jest.setup.js",
"env-config.js",
"/out"
]
}