-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.09 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
{
"name": "web",
"version": "1.1.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"co": "npx sui-mono commit",
"start": "npx sui-bundler dev",
"build": "npx sui-bundler build -C",
"postbuild": "cp public/index.html ./functions && cp -R src/images public && cp src/manifest.json public && cp src/robots.txt public && cp -Rf ./statics/ ./public",
"predeploy:pre": "firebase use development && firebase functions:config:set env.stage=\"development\" && cd functions && npm install",
"deploy:pre": "npm run build && npx firebase deploy --token \"$FIREBASE_TOKEN\"",
"predeploy:pro": "firebase use production && firebase functions:config:set env.stage=\"production\" && cd functions && npm install",
"deploy:pro": "npm run build && npx firebase deploy --token \"$FIREBASE_TOKEN\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@s-ui/i18n": "1",
"@s-ui/react-hooks": "1",
"@s-ui/react-router": "1.0.0-beta.6",
"classnames": "2.2.6",
"firebase": "7.13.1",
"firebase-tools": "7.16.1",
"idb-keyval": "3.2.0",
"perfume.js": "3.0.2",
"react": "16",
"react-div-100vh": "0.3.8",
"react-dom": "16",
"react-hammerjs": "1.0.1",
"react-helmet": "5.2.1"
},
"devDependencies": {
"@s-ui/bundler": "beta",
"@s-ui/component-peer-dependencies": "1",
"@s-ui/lint": "3",
"@s-ui/mono": "1"
},
"sui-bundler": {
"env": [
"HOST",
"STAGE"
],
"offline": {
"fallback": "index.html",
"runtime": [
{
"handler": "CacheFirst",
"urlPattern": "^https:\\/\\/res\\.cloudinary\\.com",
"options": {
"cacheName": "cloudinary",
"expiration": {
"maxEntries": 200,
"maxAgeSeconds": 604800
}
}
}
]
}
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js"
}