-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 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
{
"name": "SystemSeed",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"babel-plugin-inline-dotenv": "^1.1.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"bootstrap": "^4.1.2",
"compression": "^1.7.3",
"express": "^4.16.3",
"next": "^6.1.1",
"next-redux-saga": "^3.0.0-beta.1",
"next-redux-wrapper": "^2.0.0",
"next-routes": "^1.4.2",
"node-sass": "^4.9.2",
"node-sass-glob-importer": "^5.2.0",
"nprogress": "^0.2.0",
"prop-types": "^15.6.2",
"raw-loader": "^0.5.1",
"react": "^16.4.1",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"reactstrap": "^6.3.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-saga": "^0.16.0",
"sass-loader": "^7.0.3",
"superagent": "^3.8.3",
"superagent-defaults": "^0.1.14",
"superagent-jsonapify": "^1.4.5",
"superagent-prefix": "^0.0.2",
"webpack": "^4.16.1"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "4",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0"
},
"standard": {
"parser": "babel-eslint"
},
"scripts": {
"build": "next build",
"start": "PORT=3000 NODE_ENV=production node server.js",
"start:dev": "PORT=3000 NODE_ENV=development node server.js",
"eslint": "./node_modules/.bin/eslint ./"
},
"now": {
"name": "contenta-react-next",
"alias": "contenta-react-next",
"public": true,
"type": "npm",
"env": {
"BACKEND_URL": "https://live-contentacms.pantheonsite.io",
"JSONAPI_PREFIX": "/api"
}
}
}