forked from ryoungblom/taptrust-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1002 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1002 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
39
{
"name": "taptrust",
"version": "0.3.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon ./app",
"migrate": "sequelize db:migrate",
"test": "NODE_ENV=test npm run migrate && NODE_ENV=test mocha --recursive --timeout 10000 --exit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"morgan": "^1.9.0",
"pg": "^7.4.0",
"pg-hstore": "^2.3.2",
"sequelize": "^4.22.7",
"sequelize-cli": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"prettier-eslint": "^8.8.1"
}
}