-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
86 lines (86 loc) · 2.64 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "netlify-cms-react-starter",
"version": "0.5.1",
"private": true,
"devDependencies": {
"chokidar-cli": "^2.0.0",
"glob": "^7.1.4",
"gray-matter": "^4.0.2",
"heml": "^1.1.3",
"js-yaml": "^3.13.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"postcss-cli": "^6.1.3",
"postcss-cssnext": "^3.0.2",
"prop-types": "^15.7.2",
"react-scripts": "^3.3.1",
"sharp": "^0.23.0",
"sitemap-static": "^0.4.4",
"snazzy": "^8.0.0",
"sw-precache": "^5.2.0"
},
"dependencies": {
"@researchgate/react-intersection-observer": "^1.0.1",
"date-fns": "^2.2.1",
"dom-form-serializer": "^1.0.7",
"intersection-observer": "^0.7.0",
"lodash": "^4.17.21",
"modern-normalize": "^0.5.0",
"moveto": "^1.8.2",
"netlify-identity-widget": "^1.5.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-feather": "^2.0.3",
"react-helmet": "^5.2.1",
"react-markdown": "4.2.2",
"react-router-dom": "^5.0.1",
"react-snapshot": "^1.3.0"
},
"scripts": {
"start": "npm-run-all prepare-content -p start:content start:app start:cms",
"start:app": "react-scripts start",
"start:content": "chokidar 'content/**/**' -c 'npm run prepare-content'",
"start:cms": "chokidar 'cms/cms.js' -c 'cd cms && npm run build'",
"build": "npm-run-all -s prepare-content build:cms build:app build:postcss build:react-snapshot build:sitemap build:sw build:sha",
"build:app": "react-scripts build",
"build:cms": "cd cms && NODE_ENV=production npm run build",
"build:postcss": "postcss build/static/css/*.css -r",
"build:react-snapshot": "react-snapshot",
"build:sw": "sw-precache --config='sw-precache-config.js'",
"build:sitemap": "node ./functions/generate-sitemap.js",
"build:sha": "git rev-parse HEAD > build/sha",
"parse-content": "node ./functions/parse-content.js",
"prepare": "npm run install:cms",
"install:cms": "cd cms && npm i",
"resize-images": "node ./functions/resize-images.js",
"prepare-content": "npm-run-all -s parse-content resize-images",
"test": "standard | snazzy && react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"reactSnapshot": {
"include": [
"/404"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"axios": "^0.18.1",
"extend": "^3.0.2",
"http-proxy-middleware": "^0.20.0",
"js-yaml": "^3.13.0",
"request": "^2.88.0"
}
}