-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 857 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 857 Bytes
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
{
"name": "raptor",
"version": "1.2.0",
"description": "Dino api client to gather infos",
"scripts": {
"prebuild": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc",
"lint": "eslint \"**/*.ts\"",
"start": "node dist/index.js",
"debug": "nodemon src/index.ts"
},
"author": "Alex Ottr <alex@ottr.one>",
"license": "MIT",
"dependencies": {
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"helmet": "^5.0.1",
"mongoose": "^6.1.6"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-plugin-import": "^2.25.4",
"nodemon": "^2.0.15"
}
}