-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 985 Bytes
/
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
{
"name": "persistence-api-wyd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "tsx --watch ./src/main/server.ts",
"build": "tsup ./src",
"test": "vitest ./src",
"lint": "eslint ./src",
"lint:watch": "esw -w --color ./src/**/*.ts",
"lint:fix": "eslint --fix ./src"
},
"author": "gabrielbsx",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.16.3",
"@types/ramda": "^0.28.23",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-watch": "^8.0.0",
"tsup": "^6.6.3",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"ramda": "^0.28.0"
}
}