This repository has been archived by the owner on Oct 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.12 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": "citycatch",
"version": "1.0.0",
"dependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/runtime": "^7.7.6",
"@rollup/plugin-alias": "^2.2.0",
"@types/googlemaps": "^3.38.1",
"@types/node": "^10.12.19",
"@types/pusher-js": "^4.2.2",
"autoprefixer": "^9.7.3",
"core-js": "^3.4.2",
"cross-env": "^6.0.3",
"cssnano": "^4.1.10",
"dayjs": "^1.8.17",
"dotenv": "^8.2.0",
"effector": "^20.7.1",
"express": "^4.17.1",
"http-proxy-middleware": "^0.20.0",
"node-sass": "^7.0.3",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.2",
"postcss-custom-properties": "^9.0.2",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"pusher-js": "^5.0.3",
"rollup": "^1.27.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-dotenv": "^0.2.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-svg-import": "^1.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-visualizer": "^3.3.0",
"sass": "^1.23.7",
"sirv": "^1.0.0-next.2",
"sirv-cli": "^0.4.5",
"svelte": "^3.16.0",
"svelte-forms": "^1.2.0",
"svelte-notifications": "^0.9.8",
"svelte-preprocess": "^3.2.6",
"svelte-routing": "^1.4.0",
"tailwindcss": "^1.1.4",
"tailwindcss-transitions": "^2.1.0",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typescript": "^3.7.3",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"watch:tailwind": "postcss public/*.pcss --ext css --dir public -w",
"build:tailwind": "cross-env NODE_ENV=production postcss public/*.pcss --dir public --ext css",
"dev": "run-p start:dev autobuild watch:tailwind",
"build": "npm run build:tailwind && rollup -c",
"autobuild": "rollup -c -w",
"start": "npm run build && sirv public --port $PORT --host 0.0.0.0 --single",
"start:dev": "node ./dev.js"
}
}