-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.61 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
93
94
95
96
97
98
99
100
{
"name": "nutmeg-server",
"version": "1.0.0",
"description": "Nutmeg server framework",
"main": "index.js",
"scripts": {
"start": "tsc && node ./dist/index.js",
"dev": "nodemon",
"build": "tsc",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"lint": "tslint -c tslint.json -t stylish 'src/**/*.ts'",
"lint-fix": "tslint -c tslint.json --fix 'src/**/*.ts'"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/body-parser": "^1.16.8",
"@types/compression": "0.0.36",
"@types/cookie-parser": "^1.4.1",
"@types/dotenv": "^4.0.2",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.11.1",
"@types/http-errors": "^1.6.1",
"@types/jest": "^22.2.2",
"@types/jsonwebtoken": "^7.2.6",
"@types/lodash": "^4.14.107",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.6",
"@types/passport": "^0.4.3",
"@types/passport-jwt": "^3.0.1",
"@types/passport-local": "^1.0.32",
"@types/pg": "^7.4.5",
"@types/raven": "^2.5.1",
"@types/redis": "^2.8.6",
"@types/request": "^2.47.0",
"@types/request-promise": "^4.1.41",
"@types/sequelize": "^4.27.17",
"@types/socket.io": "^1.4.33",
"@types/uuid": "^3.4.3",
"@types/validator": "^9.4.0",
"dotenv": "^5.0.1",
"errorhandler": "^1.5.0",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"nodemon": "^1.17.2",
"pre-commit": "^1.2.2",
"ts-jest": "^22.4.2",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"xml2js": "^0.4.19"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"@types/xml2js": "^0.4.2",
"airtable": "^0.5.6",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"http-errors": "^1.6.2",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"raven": "^2.5.0",
"redis": "^2.8.0",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"sequelize": "^4.37.6",
"socket.io": "^2.1.0",
"socket.io-redis": "^5.2.0",
"uuid": "^3.2.1",
"validator": "^9.4.1"
},
"pre-commit": [
"lint",
"test"
]
}