forked from gitaalekhyapaul/shikshak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.54 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
55
{
"name": "shikshak",
"version": "1.0.0",
"description": "Shikshak 1.0",
"main": "./build/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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/gitaalekhyapaul/shikshak.git"
},
"author": "Team !!Coders",
"license": "MIT",
"bugs": {
"url": "https://github.com/gitaalekhyapaul/shikshak/issues"
},
"homepage": "https://github.com/gitaalekhyapaul/shikshak#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/nanoid": "^2.1.0",
"@types/node": "^14.14.6",
"@types/node-cache": "^4.2.5",
"@types/socket.io": "^2.1.11",
"@types/yup": "^0.29.9",
"nodemon": "^2.0.6",
"tsc": "^1.20150623.0",
"typescript": "^4.0.2"
},
"dependencies": {
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"data-uri-to-buffer": "^3.0.1",
"datauri": "^3.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"nanoid": "^3.1.16",
"node-cache": "^5.1.2",
"socket.io": "^2.3.0",
"yup": "^0.29.3"
}
}