-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.19 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
{
"name": "PickThePervAPI",
"version": "1.0.0",
"description": "",
"author": "",
"main": "app/server.js",
"scripts": {
"test": "eslint app/",
"dev": "nodemon app/server.js --exec babel-node",
"lint": "eslint app",
"start": "babel-node app/server.js",
"build": "babel app -d build",
"prod": "npm run build; node build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beneisnr/PickThePerv.git"
},
"license": "ISC",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"cors": "^2.8.3",
"debug": "^2.6.8",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"express": "^4.15.3",
"jwt-simple": "^0.5.1",
"mongoose": "^4.10.4",
"morgan": "^1.8.2",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"nodemon": "^1.11.0"
}
}