-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "crossfit-wod-api",
"version": "1.0.0",
"description": "",
"nodemonConfig": {
"watch": [
"server"
],
"ext": "ts",
"delay": "3",
"execMap": {
"ts": "ts-node"
}
},
"main": "src/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"lint": "eslint --ignore-path .eslintignore src/** --ext .ts",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(ts)\""
},
"author": "Evan Trujillo",
"license": "ISC",
"devDependencies": {
"@types/apicache": "^1.6.6",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/node": "^20.11.17",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2"
},
"dependencies": {
"apicache": "^1.6.3",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"typescript": "^5.3.3",
"uuid": "^9.0.1"
}
}