-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 935 Bytes
/
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
{
"name": "vanilla-web-ts",
"version": "0.0.2",
"description": "A bootstrap for web Development with vanilla TypeScript",
"private": true,
"scripts": {
"dev": "npm run build && npm-run-all -p watch",
"build": "npm-run-all -s clean webpack cp-statics",
"webpack": "webpack",
"ts": "tsc",
"cp-statics": "node scripts/cp-statics.mjs",
"clean": "node scripts/clean.mjs",
"clean:all": "node scripts/clean-all.mjs",
"watch": "node scripts/watch.mjs",
"serve": "browser-sync start --serve --files 'dist/*'"
},
"author": "juninhocruzg3",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.27.7",
"chokidar": "^3.5.3",
"css-loader": "^6.7.1",
"env-cmd": "^10.1.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}