-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.15 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": "TODO",
"description": "TODO",
"license": "MIT",
"repository": {},
"version": "0.2.0",
"scripts": {
"clean": "rm -fr __sapper__ node_modules src/node_modules",
"rebuild": "npm run clean && rm package-lock.json && npm i",
"devBuild": "npm run clean && npm ci",
"devStart": "npx -n '-r dotenv/config' sapper dev --output node_modules/@sapper",
"dev": "npm run devBuild && npm run devStart",
"dynamicBuild": "npm run clean && npm ci && npx -n '-r dotenv/config' sapper build --legacy --output node_modules/@sapper",
"dynamicStart": "node -r dotenv/config __sapper__/build",
"dynamic": "npm run dynamicBuild && npm run dynamicStart",
"staticBuild": "npm run clean && npm ci && npx -n '-r dotenv/config' sapper export --legacy --output node_modules/@sapper",
"staticStart": "npx -n '-r dotenv/config' serve __sapper__/export",
"static": "npm run staticBuild && npm run staticStart",
"build": "npm run buildStatic",
"start": "npm run startStatic",
"lint": "npx -n '-r dotenv/config' eslint . --ext js,svelte"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"polka": "^0.5.0",
"serve": "^11.3.0",
"sirv": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.2.0",
"eslint": "^7.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-svelte3": "^2.0.0",
"husky": "^4.0.0",
"rollup": "^2.3.4",
"rollup-plugin-svelte": "^6.0.0",
"rollup-plugin-terser": "^7.0.0",
"sapper": "^0.28.0",
"svelte": "^3.24.0",
"svelte-preprocess": "^4.2.0",
"tailwindcss": "^1.8.0"
},
"bundledDependencies": {
"@sapper/app": "",
"@sapper/server": "",
"@sapper/service-worker": ""
},
"engines": {
"node": "12.x"
}
}