forked from nodeboot/nodeboot-spa-server
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
42
43
{
"name": "nodeboot-spa-server",
"version": "1.0.0",
"description": "http server for any spa developed with react, angular, vue, etc with some few useful features",
"main": "index.js",
"bin": {
"nodeboot-spa-server": "src/server/SpaServer.js"
},
"scripts": {
"test": "jest --verbose --silent --collectCoverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodeboot/nodeboot-spa-server.git"
},
"keywords": [
"spa",
"http-serve",
"serve",
"react",
"angular",
"vue"
],
"author": "JRichardsz",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodeboot/nodeboot-spa-server/issues"
},
"homepage": "https://github.com/nodeboot/nodeboot-spa-server#readme",
"dependencies": {
"advanced-settings": "git+https://github.com/nodeboot/advanced-settings.git",
"colors": "^1.4.0",
"express": "^4.17.1",
"jest-coverage-badges": "^1.1.2",
"minimist": "^1.2.5",
"portfinder": "^1.0.28"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^27.3.1",
"supertest": "^6.1.6"
}
}