-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
62
63
64
65
66
67
68
{
"name": "pc-form-generator",
"version": "2.2.0",
"description": "",
"author": "CDS",
"license": "MIT",
"private": true,
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "nodemon ./bin/www",
"lint": "node_modules/eslint/bin/eslint.js config routes bin/www app.js",
"prettier": "prettier --write '**/*.{ts,js,css,html}'",
"prod_env": "set NODE_ENV=production",
"dev_env": "set NODE_ENV=development",
"start": "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",
"translate": "node utils/i18n-helper.js"
},
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "~1.4.5",
"cookie-session": "^1.4.0",
"copy-template-dir": "^1.4.0",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "~4.17.1",
"express-session": "^1.17.0",
"express-validator": "^6.4.0",
"helmet": "^3.22.0",
"i18n": "^0.8.6",
"mailgun-js": "^0.22.0",
"memorystore": "^1.6.2",
"node-pandoc": "^0.3.0",
"node-sass": "^4.14.1",
"node-sass-middleware": "^0.11.0",
"normalize.css": "^8.0.1",
"notifications-node-client": "^4.7.2",
"nunjucks": "^3.2.1",
"request": "^2.88.2"
},
"devDependencies": {
"commander": "^5.0.0",
"acorn": "^7.1.1",
"cheerio": "^1.0.0-rc.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.2.7",
"nodemon": "^2.0.2",
"patch-package": "^6.2.2",
"prettier": "^2.0.4",
"supertest": "^4.0.2",
"supertest-session": "^4.0.0"
},
"nodemonConfig": {
"ext": "js,json,njk,scss"
}
}