-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "web-starter-nodejs",
"version": "1.0.0",
"description": "A starter web application",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development ts-node ./src/server.ts",
"start:watch": "NODE_ENV=development nodemon",
"build": "NODE_ENV=production tsc",
"postbuild": "copyfiles -f -V src/views/* dist/app/views",
"lint": "tslint -p .",
"test": "jest -c src/test/jest.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"govuk-frontend": "^3.6.0",
"nunjucks": "^3.2.2"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^26.0.16",
"@types/node": "^13.13.2",
"@types/nunjucks": "^3.1.3",
"@types/supertest": "^2.0.8",
"copyfiles": "^2.2.0",
"gulp": "^4.0.2",
"gulp-sass": "^4.1.0",
"jest": "^25.4.0",
"node-sass": "^4.14.0",
"nodemon": "^2.0.7",
"supertest": "^4.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"nodemonConfig": {
"watch": [
"./src"
],
"ext": "ts",
"legacyWatch": true,
"ignore": [
"**/*.spec.ts"
],
"exec": "ts-node ./src/server.ts"
}
}