-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"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",
"lint": "prettier --check src/*.{js,css} src/**/*.{js,css}",
"lint:fix": "prettier --write src/*.{js,css} src/**/*.{js,css}",
"serve": "serve dist -p 3000"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@reach/router": "^1.2.1",
"axios": "^0.19.0",
"emotion": "^10.0.27",
"emotion-theming": "^10.0.27",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-static": "^7.2.0",
"react-static-plugin-emotion": "^7.2.2",
"react-static-plugin-favicons": "^2.0.0",
"react-static-plugin-reach-router": "^7.2.0",
"react-static-plugin-sitemap": "^7.2.0",
"react-static-plugin-source-filesystem": "^7.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"eslint-config-react-app": "^5.0.1",
"eslint-config-react-tools": "^1.1.7",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"prettier": "^1.19.1",
"serve": "^11.3.2"
}
}