-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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": "team-capture-site",
"private": true,
"scripts": {
"start": "npm run build-news && react-static start",
"stage": "npm run build-news && react-static build --staging",
"build": "npm run build-news && react-static build",
"analyze": "react-static build --analyze",
"serve": "serve dist -p 3000",
"build-news": "node news/post-gen.js",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@reach/router": "^1.3.4",
"axios": "^0.21.1",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.7.1",
"markdown-to-jsx": "^7.1.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-hot-loader": "^4.13.0",
"react-static": "^7.5.1",
"react-static-plugin-reach-router": "^7.0.10",
"react-static-plugin-sitemap": "^7.0.10",
"react-static-plugin-source-filesystem": "^7.5.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-react-tools": "^1.1.3",
"eslint-plugin-flowtype": "^5.2.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.3",
"serve": "^11.3.2"
}
}