forked from gitaalekhyapaul/trinetra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.44 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
{
"name": "trinetra",
"version": "1.0.0",
"description": "Your Go-to timetable application!",
"main": "build/app.js",
"repository": "git@github.com:gitaalekhyapaul/trinetra.git",
"author": "Gita Alekhya Paul <54375111+gitaalekhyapaul@users.noreply.github.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongodb": "^3.6.12",
"@types/nanoid": "^2.1.0",
"@types/nanoid-dictionary": "^4.2.0",
"@types/node": "^14.14.37",
"@types/yup": "^0.29.11",
"concurrently": "^6.0.2",
"tsc": "^1.20150623.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.4"
},
"scripts": {
"dev": "concurrently \"yarn dev:server\" \"yarn dev:client\"",
"dev:server": "tsc-watch --onSuccess \"node ./build/app.js\"",
"dev:client": "cd client && yarn start",
"build": "concurrently \"yarn build:server\" \"yarn build:client\"",
"build:server": "tsc",
"build:client": "cd client && yarn build",
"start": "node ./build/app.js",
"postinstall": "cd client && yarn install"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.6",
"nanoid": "^3.1.22",
"nanoid-dictionary": "^4.3.0",
"yup": "^0.32.9"
}
}