-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "barq-server",
"version": "1.0.0",
"description": "BarQ Server",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"precommit": "npm run lint",
"test": "test",
"dev": "npx nodemon -L --exec babel-node index.js",
"seed": "npx babel-node tests/db.mock.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixweinberger/barq-server.git"
},
"author": "Rachel Bonny, Natalia Rizzi, Alan Hu, Egill Hreinsson, Felix Weinberger",
"license": "MIT",
"bugs": {
"url": "https://github.com/felixweinberger/barq-server/issues"
},
"homepage": "https://github.com/felixweinberger/barq-server#readme",
"dependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/node": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"bcrypt": "^3.0.5",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"mongoose": "^5.4.19",
"morgan": "^1.9.1",
"redis": "^2.8.0",
"short-id": "0.1.0-1",
"shortid": "^2.2.14",
"socket.io": "^2.2.0",
"stripe": "^6.28.0"
},
"devDependencies": {
"eslint": "^5.15.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"nodemon": "^1.18.10",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0"
}
}