-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "mytypescript",
"version": "1.0.0",
"description": "TS的DEMO",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"dev": "webpack-dev-server --open",
"start": "webpack-dev-server --open",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haolic/TypeScript.git"
},
"keywords": [
"TypeScript",
"javascript",
"js",
"web"
],
"author": "Faruxue",
"license": "ISC",
"bugs": {
"url": "https://github.com/haolic/TypeScript/issues"
},
"homepage": "https://github.com/haolic/TypeScript#readme",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"jquery": "^3.4.1",
"lodash": "^4.17.11"
}
}