-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ddrguide",
"version": "0.1.0",
"private": true,
"homepage": "https://ddrguide.com/",
"dependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"@types/node-sass": "^4.11.0",
"@types/react": "^16.9.2",
"@types/react-autosuggest": "^9.3.11",
"@types/react-dom": "^16.9.0",
"@types/react-helmet": "^5.0.9",
"@types/react-router-dom": "^5.0.1",
"@types/react-router-hash-link": "^1.2.1",
"history": "^4.9.0",
"moize": "^5.4.4",
"node-sass": "^4.12.0",
"react": "^16.9.0",
"react-autosuggest": "^9.4.3",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-markdown": "^4.2.2",
"react-router-dom": "^5.0.1",
"react-router-hash-link": "^1.2.2",
"react-scripts": "3.1.1",
"react-themeable": "^1.1.0",
"typescript": "^3.6.2"
},
"scripts": {
"start": "npm run content-to-json && react-scripts start",
"start-prod": "npm run build && serve -p 3000 build",
"build": "npm run content-to-json && react-scripts build",
"postbuild": "react-snap",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"content-to-json": "node ./tasks/content-to-json.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"frontmatter": "0.0.3",
"gh-pages": "^2.1.1",
"js-yaml": "^3.13.1",
"react-snap": "^1.23.0"
},
"reactSnap": {
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
]
}
}