-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.13 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
{
"name": "abclou-purs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "parcel index.html",
"build": "spago build && parcel build index.html"
},
"author": "",
"license": "ISC",
"devDependencies": {
"less": "^3.11.1",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-pwa-manifest": "^3.0.7",
"parcel-plugin-sw-precache": "^1.1.2",
"purescript": "^0.13.6",
"purty": "^6.2.0",
"spago": "^0.15.2"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"sw-precache": {
"maximumFileSizeToCacheInBytes": 10485760
},
"pwaManifest": {
"name": "ABCLOU",
"shortName": "ABCLOU",
"startURL": ".",
"theme": "rgba(82, 75, 75, 0.1)",
"display": "standalone",
"staticFileGlobs": [
"**/*.png",
"**/*.svg",
"**/*.css",
"**/*.js",
"**/*.html"
],
"generateIconOptions": {
"baseIcon": "./original-assets/Rocket.png",
"sizes": [
192,
384,
512
],
"genFavicons": true
}
}
}