-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "accounting",
"version": "1.0.0",
"description": "A web based simple double entry system accounting application",
"main": "backend/server.js",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1",
"pretty": "prettier --write .",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "Captainayan",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^6.5.1",
"helmet": "^5.1.1",
"http-status-codes": "^2.2.0",
"joi": "^17.6.0",
"joi-objectid": "^4.0.2",
"json2csv": "^5.0.7",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"axios": "^0.27.2",
"chai": "^4.3.6",
"concurrently": "^7.3.0",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"newman": "^5.3.2",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
}
}