-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "kanban-task-management",
"version": "1.0.0",
"engines": {
"node": ">= 12.0.0"
},
"description": "A Kanban task management platform for defining, managing, and improving services that deliver knowledge work.",
"main": "index.js",
"scripts": {
"test": "jest",
"server": "nodemon server/index.js",
"client": "npm run dev --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm i --prefix client && npm run build --prefix client",
"start-server": "node server/index.js"
},
"author": "Romulo Roriz",
"license": "MIT",
"devDependencies": {
"concurrently": "^7.6.0",
"gulp-purgecss": "^5.0.0",
"nodemon": "^2.0.20"
},
"dependencies": {
"axios": "^1.2.3",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-validator": "^6.14.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.4"
}
}