-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.68 KB
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
48
49
50
51
52
53
54
{
"name": "turnir_back",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:ts": "nodemon --exec ts-node src/index.ts",
"start": "nodemon dev/index.js",
"predev": "rm -rf dev && prisma generate",
"dev": "webpack --config webpack.dev.js",
"prebuild": "eslint src/**/*.ts --fix",
"build": " webpack --config webpack.prod.js",
"lint": "eslint src/**/*.ts --fix",
"p-studio": "prisma studio",
"p-migrate": "prisma migrate dev --create-only --name 'init' --preview-feature",
"prisma": "prisma migrate dev --create-only --name 'init' --preview-feature && prisma generate && prisma studio"
},
"keywords": [],
"author": "sabovyan",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@prisma/cli": "^2.13.0",
"@prisma/client": "^2.13.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ts-node": "^9.1.1",
"webpack-merge": "^5.7.2"
},
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/hapi__joi": "^17.1.6",
"@types/node": "^14.14.14",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-loader": "^6.2.2",
"typescript": "^4.1.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
}
}