-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "cadence",
"version": "1.12.3",
"description": "",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"server": "nodemon",
"local": "yarn && yarn --cwd \"./client\" && npx knex migrate:rollback && npx knex migrate:latest && npx knex seed:run",
"dev": "concurrently \"nodemon server/index.js\" \"yarn --cwd ./client start\"",
"test": "jest --watch --verbose=false --runInBand",
"test:terse": "jest --watch --runInBand",
"test:once": "jest --runInBand"
},
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"firebase-admin": "^6.5.0",
"helmet": "^3.15.0",
"knex": "^0.16.3",
"moment": "^2.23.0",
"morgan": "^1.9.1",
"nodemailer": "^5.1.1",
"nodemon": "^1.18.9",
"pg": "^7.8.0",
"stripe": "^6.20.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "5.6.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-react": "^7.12.3",
"jest": "^23.6.0",
"mockery": "^2.1.0",
"nodemailer-mock": "^1.3.15",
"supertest": "^3.3.0"
}
}