-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 987 Bytes
/
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
{
"name": "spongebob-ip",
"version": "0.1.0",
"main": "server.js",
"repository": "https://github.com/beni69/spongebob-ip.git",
"author": "beni69 <[email protected]> (https://github.com/beni69)",
"license": "MIT",
"bin": "server.js",
"scripts": {
"start": "node server.js",
"build": "tsc",
"dev": "nodemon server.ts"
},
"pkg": {
"assets": [
"public/*"
]
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"nanoid": "^3.1.31",
"node-fetch": "^3.1.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.6.1",
"@types/node-fetch": "^2.5.12",
"@types/nodemon": "^1.19.1",
"nodemon": "^2.0.12",
"pkg": "^5.6.0",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}