-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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
{
"name": "invoice-app",
"version": "1.0.0",
"description": "Invoice Application",
"main": "backend/dist/server.js",
"engines": {
"node": "16.x",
"npm": "7.x"
},
"scripts": {
"server": "nodemon backend/src/server.ts",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "ts-node backend/src/seeder.ts",
"data:destroy": "ts-node backend/src/seeder.ts -d",
"data:find": "ts-node backend/src/seeder.ts -f",
"tsc": "./node_modules/typescript/bin/tsc",
"build": "tsc -p ./backend/tsconfig.json",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm run build && npm install --prefix frontend && npm run build --prefix frontend",
"start": "node backend/dist/server.js",
"deploy": "git add . && git commit -m Heroku && git push heroku main"
},
"author": "Glen Ottley",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.35",
"concurrently": "^7.2.2",
"nodemon": "^2.0.16",
"ts-node": "^10.8.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-promisify": "^1.1.5",
"mongoose": "^6.4.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"typescript": "^4.7.4"
}
}