forked from freeCodeCamp/open-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "open-data",
"description": "Free Code Camp's open data initiative",
"version": "0.0.1",
"homepage": "",
"main": "src/",
"keywords": [
"feathers"
],
"license": "MIT",
"repository": {},
"author": {},
"contributors": [],
"bugs": {},
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"start": "gulp serve",
"lint": "gulp lint-js",
"test": "gulp test",
"convert": "node scripts/convert-users",
"inspect": "node scripts/detect-cheaters"
},
"dependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^6.0.0",
"babel-register": "^6.3.0",
"body-parser": "^1.15.0",
"compression": "^1.6.1",
"cors": "^2.7.1",
"dotenv": "^2.0.0",
"eslint": "~2.2.0",
"eslint-plugin-react": "*",
"express": "^4.13.3",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-eslint": "^2.0.0",
"gulp-nodemon": "^2.0.3",
"gulp-util": "^3.0.6",
"mongoose": "^4.4.8",
"path": "^0.12.7"
},
"devDependencies": {
"browser-sync": "^2.9.12",
"jsonlint": "^1.6.2",
"gulp-tape": "0.0.7",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"supertest": "*"
}
}