-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.07 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
{
"name": "pay-and-wash",
"main": "index.js",
"repository": "https://github.com/pawteam/pay-and-wash.git",
"author": "iuevix",
"contributors": [
"romw314 <[email protected]>"
],
"license": "MIT",
"scripts": {
"import-page-scripts": "copyfiles -f -e \"**/*.test.js\" \"./web-scripts/**/*\" www/js",
"build-css": "sass ./styles:./www/css --no-source-map",
"build": "yarn build:yarn",
"build:yarn": "yarn import-page-scripts && yarn build-css",
"build:npm": "npm run import-page-scripts && npm run build-css",
"dev-server": "live-server www",
"dev": "yarn dev:yarn",
"dev:yarn": "concurrently -n SERVER,SASS -c cyan,green \"yarn dev-server\" \"yarn build-css --watch\"",
"dev:npm": "concurrently -n SERVER,SASS \"npm run dev-server\" \"npm run build-css --watch\"",
"test": "jest --roots web-scripts"
},
"devDependencies": {
"browser-env": "^3.3.0",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"live-server": "^1.2.2",
"node-fetch-commonjs": "^3.3.2",
"sass": "^1.69.5"
}
}