-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "Your Project Name",
"version": "0.0.1",
"description": "A first version",
"main": "app.ts",
"repository": {
"type": "git",
"url": "your-github-url"
},
"author": "TheArtist",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"concurrently": "^7.3.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"fstream": "^1.0.12",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.19",
"nopt": "^6.0.0",
"npx": "^10.2.2",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"sequelize-typescript": "^2.1.3",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"@types/pg": "^8.6.5"
},
"scripts": {
"build": "npx tsc",
"start": "npx tsc; node src/app.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q src/app.js\"",
"test": "echo \"Error: no tests specified\" && exit 1"
},
"bugs": {
"url": "https://github.com/BlankCanvasStudio/Your Project Name/issues"
},
"homepage": "https://github.com/BlankCanvasStudio/Your Project Name#readme",
"directories": {
"doc": "docs"
},
"keywords": []
}