forked from Saradoc62/template-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 826 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
{
"name": "template-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && webpack --mode production --config webpack.config.js",
"start-node": "node dist/bundle.js",
"start": "webpack serve --mode development --config webpack.config.js",
"all": "npm run build && npm run start"
},
"author": "",
"license": "ISC",
"devDependencies": {
"css-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"rimraf": "^3.0.2",
"style-loader": "^3.2.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"moment": "^2.29.1"
}
}