-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "ArkhamPrisma",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc && cp -rf package.json dist/package.json",
"prestart": "npm run build",
"start": "ts-node ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.12.0",
"eslint-config-prettier": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prisma": "^3.10.0",
"ts-node": "^9.0.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@prisma/client": "^2.11.0",
"@types/express": "^4.17.9",
"body-parser": "^1.19.0",
"eslint": "^7.17.0",
"express": "^4.17.1",
"prettier": "^2.2.1"
}
}