-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 2.14 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
{
"name": "svelte-spa-template",
"version": "2.0.1",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"start": "npm run clean && ts-node ./config/parcel.config.ts --serve --http-port 8080 --https-port 8443",
"build": "npm run clean && ts-node ./config/parcel.config.ts --build && npm run postbuild",
"watch": "npm run clean && ts-node ./config/parcel.config.ts --watch",
"clean": "rm -rf ./dist/*.*",
"production": "node ./production-ts/config/parcel.config.js --product-serve --http-port 80 --https-port 442",
"production-build": "npm run production-clean && tsc && ts-node ./config/parcel.config.ts --product-build && node ./postbuild.ts ./production",
"production-clean": "rm -rf ./production/*.* && rm -rf ./production-ts/*.*",
"postinstall": "rm -rf ./.cache && node ./postinstall.ts",
"postbuild": "node ./postbuild.ts ./dist",
"lint": "prettier --write ./src/**/*.{ts,js,css,html,svelte}"
},
"dependencies": {
"autoprefixer": "^9.7.6",
"axios": "^0.19.2",
"caniuse-lite": "^1.0.30001051",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"folder-logger": "^1.0.7",
"moment": "^2.25.3",
"nested-static": "^1.1.0",
"node-sass": "^4.14.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-svelte": "^4.0.6",
"postcss": "^7.0.29",
"postcss-load-config": "^2.1.0",
"public-ip": "^4.0.1",
"regenerator-runtime": "^0.13.5",
"svelma": "^0.3.2",
"svelte": "^3.22.2",
"svelte-css-in-js": "^1.0.3",
"svelte-notifications": "^0.9.9",
"svelte-preprocess": "^3.7.4",
"svelte-preprocess-sass": "^0.2.0",
"svelte-reusable": "^3.0.8",
"svelte-spa-chunk": "^2.0.0",
"svelte-spa-router": "^2.1.0",
"svelte-ts-preprocess": "^1.1.3",
"ts-node": "^8.10.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3",
"yargs": "^15.3.1"
},
"devDependencies": {
"@pyoner/svelte-ts-preprocess": "^1.2.1",
"@types/express": "^4.17.6",
"@types/node": "^13.13.4",
"parcel-plugin-typescript-paths": "^0.1.14",
"prettier": "^2.0.5",
"prettier-plugin-svelte": "^1.1.0"
},
"browserslist": [
"cover 99.5%"
]
}