-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.08 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.08 KB
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
{
"name": "tiny-webpack-typescript",
"version": "0.0.0",
"scripts": {
"start": "npm run serve",
"serve": "npx --no-install webpack serve",
"serve-modern": "npm run serve -- --env modern=true",
"serve-prod": "npm run serve -- --env prod=true",
"build": "npx --no-install webpack",
"build-modern": "npm run build -- --env modern=true",
"build-prod": "npm run build -- --env prod=true"
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"css-loader": "7.1.4",
"html-webpack-plugin": "^5.6.6",
"style-loader": "4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "5.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/<ORG>/<REPO>.git"
},
"bugs": {
"url": "https://github.com/<ORG>/<REPO>/issues"
},
"homepage": "https://github.com/<ORG>/<REPO>#readme",
"engines": {
"node": ">=18.12.0"
}
}