-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.53 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
{
"name": "chewsit-server",
"version": "1.0.0",
"description": "[![Build Status](https://travis-ci.com/khuynh92/chewsit-server.svg?branch=master)](https://travis-ci.com/khuynh92/chewsit-server)",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"test-watch": "jest --watchAll",
"test": "jest --forceExit",
"lint": "eslint **/*.js"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"testPathIgnorePatterns": [
"jest-setup.js"
],
"setupFiles": [
"./__tests__/jest-setup.js"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
},
"testURL": "http://localhost/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khuynh92/chewsit-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/khuynh92/chewsit-server/issues"
},
"homepage": "https://github.com/khuynh92/chewsit-server#readme",
"dependencies": {
"babel-env": "^2.4.1",
"babel-eslint": "^8.2.3",
"babel-register": "^6.26.0",
"bcrypt": "^3.0.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"express": "^4.16.3",
"http-errors": "^1.6.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"jest": "^22.4.4",
"mockgoose": "^7.3.5",
"mongoose": "^5.1.3",
"morgan": "^1.9.0",
"require-dir": "^1.0.0",
"supertest": "^3.1.0"
}
}