-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.02 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
38
39
40
41
{
"name": "checknowtime",
"version": "1.0.0",
"main": "dist/lib/index.js",
"files": ["dist/**/*"],
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RainingC/npmDemo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RainingC/npmDemo/issues"
},
"homepage": "https://github.com/RainingC/npmDemo#readme",
"devDependencies": {
"@types/react": "^16.9.39",
"@types/react-dom": "^16.9.8",
"awesome-typescript-loader": "^5.2.1",
"html-webpack-plugin": "^4.3.0",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"antd": "^4.3.5",
"moment": "^2.27.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}