This repository has been archived by the owner on Nov 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "node-starter-app",
"version": "2.0.0",
"description": "",
"author": "CDS",
"license": "MIT",
"private": true,
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "NODE_ENV=development nodemon ./bin/www",
"lint": "node_modules/eslint/bin/eslint.js config routes bin/www app.js",
"prettier": "prettier --write '**/*.{ts,js,css,html}'",
"start": "NODE_ENV=production node ./bin/www",
"test": "node node_modules/jest/bin/jest.js --coverage",
"test:watch": "node node_modules/jest/bin/jest.js --watch",
"postinstall": "patch-package"
},
"dependencies": {
"commander": "^3.0.1",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cookie-session": "^1.3.3",
"copy-template-dir": "^1.4.0",
"dotenv": "^8.1.0",
"express": "~4.17.1",
"express-session": "^1.16.2",
"express-validator": "^6.2.0",
"helmet": "^3.21.0",
"i18n": "^0.8.3",
"node-sass": "^4.12.0",
"node-sass-middleware": "^0.11.0",
"nonce-next": "^1.1.0",
"nunjucks": "^3.2.0",
"purecss": "^1.0.1",
"request": "^2.88.0"
},
"devDependencies": {
"acorn": "^7.0.0",
"cheerio": "^1.0.0-rc.3",
"eslint": "^6.3.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.9.0",
"nodemon": "^1.19.2",
"patch-package": "^6.1.4",
"prettier": "^1.15.2",
"supertest": "^4.0.2",
"supertest-session": "^4.0.0"
},
"nodemonConfig": {
"ext": "js,json,njk"
}
}