-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "boilerplate",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run build:live",
"build:live": "concurrently \"tsc -w\" \"nodemon ./bin/www.js --config nodemon.json\"",
"test": "jest"
},
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"@types/express": "^4.0.35",
"@types/express-session": "0.0.32",
"@types/mongoose": "^4.7.3",
"@types/node": "^7.0.4",
"bcrypt": "^1.0.2",
"body-parser": "~1.15.2",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"express": "~4.14.0",
"express-session": "^1.15.0",
"jade": "~1.11.0",
"jest": "^18.1.0",
"mailgun-js": "^0.8.1",
"mongoose": "^4.8.0",
"morgan": "~1.7.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"request": "~2.79.0",
"serve-favicon": "~2.3.0",
"ts-jest": "^18.0.2",
"typescript": "^2.1.5"
},
"devDependencies": {
"@types/jest": "^18.1.1",
"@types/passport": "^0.3.2",
"babel-preset-es2015": "^6.22.0",
"nodemon": "^1.11.0"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}