-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 968 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 968 Bytes
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
{
"name": "react-static-starter",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=localhost react-static start",
"build": "NODE_ENV=production react-static build",
"build-develop": "NODE_ENV=develop react-static build",
"build-local": "NODE_ENV=localhost react-static build",
"build-staging": "NODE_ENV=staging react-static build",
"build-production": "NODE_ENV=production react-static build",
"serve": "NODE_ENV=localhost serve dist -p 3000"
},
"dependencies": {
"axios": "^0.16.2",
"marked": "^0.3.9",
"mkdirp": "^0.5.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router": "^4.2.0",
"react-static": "^4.8.3",
"rss": "^1.2.2",
"semantic-ui-react": "^0.77.1",
"styled-components": "2.2.0"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.3.0",
"eslint-config-react-tools": "1.x.x",
"serve": "^6.1.0"
}
}