-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "chalk-api",
"version": "1.0.0",
"description": "The API for the HackerYou notes application",
"main": "server.js",
"scripts": {
"test": "gulp test"
},
"engines": {
"node": "7.2.1"
},
"author": "Ryan Christiani",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.2.19",
"bcryptjs": "^2.3.0",
"body-parser": "^1.14.1",
"busboy": "^0.2.12",
"enzyme": "^2.7.0",
"express": "^4.13.3",
"firebase-admin": "^4.2.1",
"helmet": "^3.8.2",
"jsonwebtoken": "^5.4.1",
"mongoose": "^4.2.3",
"raven": "^1.2.1",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"request": "^2.65.0",
"sendgrid": "^2.0.0"
},
"jest": {
"testRegex": "testCenter",
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
]
},
"repository": {
"type": "git",
"url": "https://github.com/HackerYou/chalk-api.git"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"expect.js": "^0.3.1",
"gulp": "^3.9.0",
"gulp-eslint": "^1.0.0",
"gulp-mocha": "^2.1.3",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-util": "^3.0.7",
"jest-cli": "^18.1.0",
"supertest": "^2.0"
}
}