-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.06 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
{
"name": "wsid",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"postcss:watch": "postcss assets/index.pcss -o assets/index.css --env development -w",
"postcss:build": "postcss assets/index.pcss -o assets/index.css --env production",
"parcel:serve": "parcel index.html",
"parcel:watch": "parcel watch index.html",
"parcel:build": "parcel build index.html --no-source-maps --public-url ./ ",
"build": "RMDIR \"dist\" /S /Q && npm-run-all -s postcss:build parcel:build",
"start": "npm-run-all -s -p postcss:watch parcel:serve"
},
"devDependencies": {
"@babel/polyfill": "^7.10.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-svelte": "^4.0.6",
"postcss": "^8.2.13",
"postcss-load-config": "^2.1.0",
"postcss-modules": "^2.0.0",
"postcss-cli": "^7.1.0",
"sass": "^1.26.8",
"svelte": "^3.23.2",
"svelte-preprocess": "^3.9.8",
"tailwindcss": "^1.4.6",
"npm-run-all": "^4.1.5",
"postcss-fontpath": "^1.0.0"
},
"dependencies": {
"postcss-import": "^12.0.1"
}
}