-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
{
"name": "scrypt-by-example",
"version": "0.1.0",
"private": true,
"homepage": "https://by-example.scrypt.io",
"dependencies": {
"highlight.js": "^11.0.1",
"prop-types": "^15.7.2",
"puppeteer": "^10.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"typescript": "^4.3.2",
"watch": "^1.0.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"postbuild": "react-snap",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -b master -d build",
"md-to-react": "node scripts/md-to-react.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/enzyme": "^3.10.8",
"@types/highlight.js": "^9.12.4",
"@types/jest": "^26.0.23",
"@types/marked": "^3.0.3",
"@types/mustache": "^4.1.1",
"@types/node": "^15.12.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@types/react-helmet": "^6.1.1",
"@types/react-router-dom": "^5.1.7",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"gh-pages": "^3.2.0",
"marked": "^3.0.3",
"mustache": "^4.2.0",
"prettier": "^2.3.1",
"react-snap": "^1.23.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4",
"yaml": "^1.10.2"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}