-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·29 lines (29 loc) · 1.05 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
{
"scripts": {
"dev": "npx parcel index.html",
"build": "rm -rf dist/ && NODE_ENV=production npx parcel build ./index.html --no-source-maps --public-url ./",
"build:github": "rm -rf docs/ && NODE_ENV=production npx parcel build index.html --public-url /mdp -d docs --no-source-maps",
"stylelint": "npx stylelint src/*.scss",
"stylelint:vue": "npx stylelint 'src/*vue' --syntax scss",
"test": "NODE_PATH=. NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"dependencies": {
"js-sha256": "^0.9.0",
"sass": "^1.32.8",
"vue": "^2.6.12",
"vue2-touch-events": "^3.2.0"
},
"devDependencies": {
"@vue/component-compiler-utils": "^3.2.0",
"jest": "^26.6.3",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.1",
"stylus": "^0.54.8",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.12"
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"type": "module"
}