-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.1 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
{
"name": "@develon/node-dev-server",
"version": "1.8.0",
"description": "Serves a Node.js app. Restart the app on changes.",
"bin": {
"nds": "./bin/main.js",
"node-dev-server": "./bin/main.js"
},
"scripts": {
"test": "cd ./examples/uexpress && yarn start:dev",
"test2": "nds ./examples/uexpress"
},
"dependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"babel-loader": "^8.2.2",
"colors": "^1.4.0",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0"
},
"author": "develon <[email protected]>",
"homepage": "https://github.com/develon2015/node-dev-server",
"repository": {
"type": "git",
"url": "https://github.com/develon2015/node-dev-server.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"node.js",
"server-development",
"real-time-reload",
"just like webpack-dev-server"
],
"license": "MIT"
}