-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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": "api-events",
"version": "1.0.0",
"description": "event api",
"main": "server.js",
"scripts": {
"start": "npm run build && npm run serve",
"build": "rimraf ./build && tsc",
"preserve": "",
"serve": "NODE_ENV=development concurrently \"tsc --watch\" \"nodemon -q ./build/server.js\"",
"prestart": "",
"start:production": "NODE_ENV=production node ./build/server.js",
"eslint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlari/API-Events.git"
},
"keywords": [
"api"
],
"author": "ogdev",
"license": "ISC",
"bugs": {
"url": "https://github.com/vlari/API-Events/issues"
},
"homepage": "https://github.com/vlari/API-Events#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"@types/morgan": "^1.9.3",
"@types/node": "^14.17.5",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"concurrently": "^6.2.0",
"eslint": "^7.30.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^4.1.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.9",
"rimraf": "^3.0.2"
}
}