-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"name": "switchbook",
"version": "1.0.0",
"description": "book trading",
"main": "index.js",
"scripts": {
"db": "mongod --dbpath ./database",
"start": "NODE_ENV=production node ./server/build/index",
"setup": "npm run setup:client && npm run setup:server",
"setup:client": "cd client && npm install",
"setup:server": "cd server && npm install",
"dev": "NODE_ENV=development concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm run dev",
"prod:build": "NODE_ENV=production concurrently \"cd client && npm run lint -- --fix\" \"npm run prod:client\" \"npm run prod:server\"",
"prod:client": "cd client && npm run build",
"prod:server": "cd server && tsc"
},
"keywords": [
"books",
"book",
"trading"
],
"author": "Larry B Faudree Jr",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lfaudreejr/switchbook.git"
},
"bugs": {
"url": "https://github.com/lfaudreejr/switchbook/issues"
},
"homepage": "https://github.com/lfaudreejr/switchbook#readme",
"devDependencies": {
"concurrently": "^3.5.1"
},
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"connect-ensure-login": "^0.1.1",
"express": "^4.16.2",
"express-jwt": "^5.3.0",
"googleapis": "^23.0.0",
"jwks-rsa": "^1.2.1",
"mongodb": "^2.2.33",
"passport-auth0": "^0.6.0",
"request": "^2.83.0",
"serve-favicon": "^2.4.5",
"supertest": "^3.0.0"
}
}