-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.25 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
{
"name": "freealgorithmbookswebsite",
"version": "1.0.0",
"engines": {
"node": "20.x",
"yarn": "1.x"
},
"description": "Free Algorithm Books Website project",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev:server": "nodemon server.js",
"dev:client": "cd client && yarn start",
"dev:mern": "concurrently -n 'server,client' -c 'yellow,blue' \"yarn run dev:server\" \"yarn run dev:client\"",
"test:server": "mocha --exit --timeout 15000",
"test:client": "cd client && yarn run test:nowatch",
"test": "concurrently -n 'server,client' -c 'yellow,blue' \"yarn run test:server\" \"yarn run test:client\"",
"heroku-postbuild": "cd client && yarn install && yarn run build",
"ci": "yarn install --frozen-lockfile && cd client && yarn install --frozen-lockfile"
},
"author": "Gaurav Walia",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^20.0.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"mongoose": "^8.1.3"
},
"devDependencies": {
"concurrently": "^8.2.2",
"dotenv": "^16.4.4",
"mocha": "^10.3.0",
"nodemon": "^3.0.3",
"supertest": "^6.3.4"
}
}