-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1014 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1014 Bytes
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
{
"name": "tech-teams-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/dbjs/tech-teams-api.git",
"author": "Brendan, David, Jake, Smita",
"license": "MIT",
"scripts": {
"precommit": "jest --coverage",
"test": "jest --coverage",
"lint": "eslint rest-server --ext .js",
"start": "nodemon rest-server/bin/entry"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"firebase": "^4.8.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jsonwebtoken": "^8.1.0",
"jwt-decode": "^2.2.0",
"mysql": "^2.15.0",
"mysql2": "^1.5.1",
"sequelize": "^4.26.0"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1"
}
}