-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·54 lines (54 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
49
50
51
52
53
54
{
"name": "fren",
"version": "1.0.0",
"description": "Fren - An Assistant to the Therapist",
"main": "./build/app.js",
"scripts": {
"start": "node ./build/app.js",
"start:dev": "npx nodemon ./build/app.js",
"start:client": "cd client && yarn start",
"build": "yarn build:client && yarn build:server",
"build:server": "npx tsc",
"build:dev": "npx tsc --watch",
"build:client": "cd client && yarn build",
"postinstall": "cd client && yarn"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jagnani73/fren.git"
},
"author": "DuckingCode",
"license": "MIT",
"bugs": {
"url": "https://github.com/jagnani73/fren/issues"
},
"homepage": "https://github.com/jagnani73/fren#readme",
"dependencies": {
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"uuid": "^8.3.1",
"yup": "^0.29.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.27",
"@types/node": "^14.11.8",
"@types/uuid": "^8.3.0",
"@types/yup": "^0.29.8",
"nodemon": "^2.0.4",
"tsc": "^1.20150623.0",
"typescript": "^4.0.3"
}
}