forked from larissachen13/dartbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "example_express_with_es6",
"version": "1.0.0",
"description": "",
"author": "",
"main": "app/server.js",
"scripts": {
"test": "./node_modules/.bin/eslint **.js",
"dev": "nodemon app/server.js --exec babel-node",
"start": "babel-node app/server.js",
"build": "babel app -d dist",
"prod": "npm run build; node dist/server.js"
},
"license": "ISC",
"dependencies": {
"aws-sdk": "2.x",
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.11.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"cors": "^2.7.1",
"dotenv": "^2.0.0",
"ejs": "2.x",
"express": "^4.14.0",
"jwt-simple": "^0.5.0",
"mongoose": "^4.5.8",
"passport": "^0.3.2",
"passport-jwt": "^2.1.0",
"passport-local": "^1.0.0",
"python-shell": "^0.4.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"nodemon": "^1.10.0"
}
}