-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
56
57
58
59
{
"name": "vaccine-app",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "cd client/ && yarn install && yarn run build",
"build-client": "cd client && yarn build",
"init-db": "yarn migrate-latest && yarn seed-run",
"init-client": "cd client && yarn install",
"init-app": "yarn install && yarn init-client && yarn init-db",
"start": "node server/index.js",
"start-server": "nodemon server/index.js",
"start-client": "cd client && yarn start",
"start-app": "run-p start-client start-server",
"lint": "eslint . --format codeframe",
"lint-fix": "eslint . --fix --format codeframe",
"test": "yarn test-server && yarn test-client",
"test-all": "yarn test-server && yarn test-client-all",
"test-server": "mocha --exit",
"test-client": "cd client && yarn test",
"test-client-all": "cd client && yarn test-all",
"migrate-latest": "knex migrate:latest",
"migrate-rollback": "knex migrate:rollback",
"seed-run": "knex seed:run",
"seed-make": "knex seed:make"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"engines": {
"node": "14.x",
"yarn": "1.x"
},
"dependencies": {
"bookshelf": "^1.2.0",
"bookshelf-eloquent": "^0.1.15",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"knex": "^0.95.6",
"mysql": "^2.18.1",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"supertest": "^6.1.4"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.28.0",
"eslint-plugin-mocha": "^9.0.0",
"firstline": "^2.0.2",
"fs": "^0.0.1-security",
"mocha": "^9.0.0",
"nodemon": "^2.0.7",
"sqlite3": "^5.0.2",
"readline": "^1.3.0"
}
}