This repository was archived by the owner on Mar 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "node-simple-site",
"version": "1.0.0",
"description": "Basic template for a site using NodeJS, ExpressJS, Angular and DRTools",
"main": "server.js",
"scripts": {
"lint": "eslint . --fix || true",
"start": "node server.js",
"start:live": "nodemon server.js",
"ui:build": "cd ui && npm run build",
"ui:live": "cd ui && npm run start:insecure"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daemonraco/node-simple-site.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/daemonraco/node-simple-site/issues"
},
"homepage": "https://github.com/daemonraco/node-simple-site#readme",
"dependencies": {
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"drtools": "^0.7.5",
"express": "^4.16.3",
"http": "0.0.0",
"http-status-codes": "^1.3.0",
"winston": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.9"
}
}