-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1014 Bytes
/
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
{
"name": "fcc-book-trading-server",
"version": "0.0.1",
"description": "freeCodeCamp Book Trading - Server",
"main": "index.js",
"scripts": {
"start": "npm run server",
"build": "babel src --out-dir dist --source-maps --retain-lines",
"server": "babel-watch -L src/server.js",
"test": "node_modules/.bin/cucumber-js test",
"debug": "babel-watch src/server.js --inspect"
},
"author": "Todd Chaffee",
"license": "ISC",
"devDependencies": {
"apickli": "^1.7.3",
"babel-cli": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-watch": "^2.0.6",
"chai": "^3.5.0",
"cucumber": "^2.0.0-rc.9",
"eslint": "^3.16.1",
"jsonwebtoken": "^7.3.0",
"mongo-express": "^0.39.1",
"node-fetch": "^1.6.3",
"pow-mongodb-fixtures": "^0.14.0"
},
"dependencies": {
"babel-core": "^6.23.1",
"body-parser": "^1.17.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-jwt": "^5.1.0",
"lodash": "^4.17.4",
"mongoose": "^4.9.0"
}
}