-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 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
{
"name": "react-static-example-basic",
"private": true,
"scripts": {
"start": "react-static start",
"stage": "react-static build --staging",
"build": "react-static build",
"analyze": "react-static build --analyze",
"serve": "serve dist -p 3000",
"clean": "rm -rf artifacts tmp dist",
"clean:deep": "rm -rf artifacts tmp dist node_modules",
"test": "jest"
},
"dependencies": {
"@reach/router": "^1.2.1",
"axios": "^0.19.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-static": "^7.0.0",
"react-static-plugin-reach-router": "^7.0.0",
"react-static-plugin-sitemap": "^7.0.0",
"react-static-plugin-source-filesystem": "^7.0.0"
},
"resolutions": {
"lodash": "^4.17.13",
"js-yaml": "^3.13.1",
"webpack-bundle-analyzer": "^3.3.2"
},
"devDependencies": {
"babel-eslint": "9.x",
"eslint": "5.x",
"eslint-config-react-app": "^3.0.8",
"eslint-config-react-tools": "1.x.x",
"eslint-plugin-flowtype": "2.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"jest": "^24.8.0",
"serve": "10.1.2"
}
}