-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "node-postgres-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf .build && tsc",
"start": "npm run build && node .build/api/index.js",
"test": "npm run build && mocha .build/test/e2e/**/**_Spec.js",
"resetdb": "npm run build && node .build/test/commands/resetdb.js",
"experimental-generate-docs": "tsc docs-generator.ts --m commonjs --outDir ./.build && node ./.build/docs-generator.js api/controllers/**.ts",
"gulp": "npm run build && gulp serve",
"gulp-test": "gulp watch-test"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^1.0.0",
"@types/body-parser": "^1.16.8",
"@types/express": "^4.11.1",
"@types/js-yaml": "^3.11.1",
"@types/lodash": "^4.14.107",
"@types/multer": "^1.3.6",
"@types/node": "^9.6.1",
"@types/nodemailer": "^4.6.0",
"@types/react": "^16.3.6",
"@types/react-dom": "^16.0.4",
"@types/uuid": "^3.4.3",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"js-yaml": "^3.13.1",
"juice": "^4.2.3",
"lodash": "^4.17.15",
"multer": "^1.3.0",
"nodemailer": "^4.6.4",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"reflect-metadata": "^0.1.12",
"routing-controllers": "^0.7.7",
"typeorm": "^0.1.20",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/gulp": "^4.0.5",
"@types/mocha": "^5.0.0",
"@types/supertest": "^2.0.4",
"chai": "^4.1.2",
"gulp": "^4.0.2",
"gulp-live-server": "0.0.31",
"mocha": "^5.0.5",
"supertest": "^3.0.0",
"typescript": "^2.8.1"
}
}