-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "pico",
"version": "1.0.0",
"description": "Shorten your URLs, but with more control.",
"main": "app.js",
"scripts": {
"prebuild": "npm install --production=false",
"build": "tsc -p . && cd client && npm run build",
"start": "node dist/app.js",
"dev": "tsc-watch --onSuccess \"node ./dist/app.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/SneakySensei/Pico.git"
},
"author": "Snehil",
"license": "ISC",
"bugs": {
"url": "https://github.com/SneakySensei/Pico/issues"
},
"homepage": "https://github.com/SneakySensei/Pico#readme",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.5.1",
"mongodb": "^4.0.1",
"nanoid": "^3.1.23",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/mongodb": "^4.0.7",
"@types/nanoid": "^3.0.0",
"@types/node": "^16.4.6",
"@types/yup": "^0.29.13",
"tsc-watch": "^4.4.0",
"typescript": "^4.3.5"
}
}