-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·84 lines (84 loc) · 2.72 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "node-starter-app",
"version": "5.0.3",
"description": "",
"author": "CDS",
"license": "MIT",
"private": true,
"engines": {
"node": ">=10"
},
"scripts": {
"build": "webpack --mode=production",
"dev": "cross-env nodemon --ignore public/js/dist --exec npm run dev:dist",
"dev:dist": "webpack --mode=development && cross-env NODE_ENV=development node ./bin/www",
"start": "npm run build && cross-env NODE_ENV=production node ./bin/www",
"lint": "node node_modules/eslint/bin/eslint.js config utils routes bin/www app.js",
"prettier": "prettier --write '**/*.{ts,js,css,html}'",
"postgres": "docker run -e POSTGRES_USER=user -e POSTGRES_PASSWORD=admin -p 5432:5432 --rm -v $(pwd)/seed:/docker-entrypoint-initdb.d postgres:latest",
"test": "node node_modules/jest/bin/jest.js --coverage",
"test:watch": "node node_modules/jest/bin/jest.js --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"postinstall": "patch-package",
"aws": "cd cdk && cdk synth && node deploy",
"aws-bootstrap": "node cdk/bootstrap.js",
"aws-destroy": "node cdk/destroy.js"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm test"
}
},
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cookie-session": "^1.3.3",
"copy-template-dir": "^1.4.0",
"csurf": "^1.10.0",
"dotenv": "^8.2.0",
"dynamoose": "^1.11.1",
"express": "~4.17.1",
"express-session": "^1.17.0",
"express-validator": "^6.2.0",
"helmet": "^3.21.1",
"i18n": "^0.8.3",
"node-sass": "^4.12.0",
"node-sass-middleware": "^0.11.0",
"normalize.css": "^8.0.1",
"nunjucks": "^3.2.0",
"request": "^2.88.0",
"cross-env": "^6.0.3",
"@cds-snc/webpack-starter": "cds-snc/webpack-starter#aa0e70bae"
},
"devDependencies": {
"@aws-cdk/aws-docdb": "1.13.1",
"@aws-cdk/aws-ec2": "1.13.1",
"@aws-cdk/aws-ecs": "1.13.1",
"@aws-cdk/aws-ecs-patterns": "1.13.1",
"@aws-cdk/core": "1.13.1",
"acorn": "^7.1.0",
"cheerio": "^1.0.0-rc.3",
"edit-json-file": "^1.3.1",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"fse": "^4.0.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"patch-package": "^6.2.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"supertest": "^4.0.2",
"supertest-session": "^4.0.0"
},
"nodemonConfig": {
"ext": "js,json,njk,scss"
}
}