-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "@cubetiq/express-server",
"version": "1.0.0",
"description": "CUBETIQ Express Server",
"main": "dist/index.js",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "rm -rf dist && tsc",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://git.cubetiqs.com/CUBETIQ/cubetiq-express-server.git"
},
"keywords": [
"TypeScript",
"Nodejs",
"Express"
],
"author": "Sambo Chea <sombochea@cubetiqs.com>",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^40.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "2.8.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2",
"reflect-metadata": "^0.1.13"
},
"dependencies": {
"express": "^4.17.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}