-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.37 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
{
"name": "@validitylabs/react-shell",
"version": "1.0.0",
"description": "Basic react shell boilerplate",
"author": "Patrice Juergens <patrice.juergens@validitylabs.org>",
"license": "GPL-3.0-only",
"main": "./src/public/index.pug",
"scripts": {
"setup": "env-cmd ts-node ./utils/setup.ts",
"serve": "cross-env NODE_ENV=development parcel ./src/index.pug --out-file index.html --port 8080 --hmr-port 39213",
"build": "cross-env NODE_ENV=production parcel build ./src/index.pug --no-source-maps",
"test": "jest"
},
"engines": {
"node": "^12.16.x"
},
"cache": {
"inDev": true,
"strategy": "inject",
"swSrc": "src/service-worker-template.js",
"swDest": "pwa-service-worker.js"
},
"repository": {
"type": "git",
"url": "git@github.com:validitylabs/react-shell.git"
},
"dependencies": {
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"axios": "^0.19.2",
"parcel-plugin-sw-cache": "^0.3.1",
"pug": "^2.0.4",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^6.0.0",
"react-swipeable": "^5.5.1"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-helmet": "^5.0.15",
"@types/shelljs": "^0.8.7",
"@types/workbox-core": "^4.3.0",
"@types/workbox-expiration": "^4.3.0",
"@types/workbox-precaching": "^4.3.0",
"@types/workbox-routing": "^4.3.0",
"@types/workbox-strategies": "^4.3.0",
"chalk": "^4.0.0",
"convert-svg-to-png": "^0.5.0",
"cross-env": "^7.0.2",
"env-cmd": "^10.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"favicons": "^6.0.0",
"jest": "^25.5.2",
"parcel-bundler": "^1.12.4",
"shelljs": "^0.8.4",
"ts-jest": "^25.4.0",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"workbox-core": "^5.1.3",
"workbox-expiration": "^5.1.3",
"workbox-precaching": "^5.1.3",
"workbox-routing": "^5.1.3",
"workbox-strategies": "^5.1.3"
}
}