-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 799 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 799 Bytes
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": "learn-typescript",
"version": "1.0.0",
"description": "",
"keywords": [
"TypeScript",
"Basic"
],
"main": "./src/index.ts",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./build/webpack.config.js",
"build": "cross-env NODE_ENV=production webpack --config ./build/webpack.config.js",
"docs": "docsify serve docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Chara",
"license": "MIT",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^6.0.3",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^6.2.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"typescript": "^3.8.3"
}
}