-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.88 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
85
86
87
88
89
90
91
92
{
"name": "resman-web-api",
"version": "1.0.0",
"description": "Resman web admin api",
"main": "dist/index.js",
"scripts": {
"test": "npm run test-server && npm run test-client",
"test-server": "NODE_ENV=test ts-node clearTestDatabase.ts && jest --verbose=false --forceExit",
"test-client": "npm run test --prefix client",
"dev": "concurrently \"yarn server-dev\" \"yarn client\"",
"lint": "tslint --project .",
"start": "ts-node index.ts",
"server": "ts-node index.ts",
"server-dev": "ts-node-dev --respawn --transpileOnly index.ts",
"server-production": "NODE_ENV=production ts-node index.ts",
"server-test": "NODE_ENV=test ts-node-dev --respawn --transpileOnly index.ts",
"client": "npm start --prefix=client",
"client-install": "npm install --prefix client",
"client-install-dev": "npm install --prefix client --only=dev --no-shrinkwrap",
"client-build": "npm run build --prefix client",
"heroku-postbuild": "yarn client-install && yarn client-install-dev && yarn client-build",
"typeorm": "ts-node ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hienlh/node-express-typescript.git"
},
"keywords": [
"nodejs",
"expressjs",
"typescript",
"heroku"
],
"author": "Hieren Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/hienlh/node-express-typescript/issues"
},
"homepage": "https://github.com/hienlh/node-express-typescript#readme",
"dependencies": {
"@types/express-serve-static-core": "^4.16.11",
"@types/i18n": "^0.8.6",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/socket.io": "^2.1.4",
"@types/supertest": "^2.0.8",
"apollo-server-express": "^2.14.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^4.1.2",
"dotenv": "latest",
"express": "^4.17.1",
"graphql": "^14.5.8",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"node-sass": "^4.13.0",
"pg": "^7.12.1",
"react-tooltip": "^3.11.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.3.0",
"supertest": "^4.0.2",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"type-graphql": "^0.17.5",
"typeorm": "^0.2.25",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.1",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/jsonwebtoken": "^8.3.4",
"@types/morgan": "^1.7.37",
"@types/pg": "^7.11.2",
"@types/react-tooltip": "^3.11.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^24.9.0",
"superagent": "^5.1.0",
"ts-jest": "^24.1.0",
"ts-node-dev": "^1.0.0-pre.42"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}