-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
74 lines (74 loc) · 2.06 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@prisma/client": "^3.15.2",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.171",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"babel-jest": "^27.2.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"class-validator": "^0.14.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"graphql": "~15.5.0",
"graphql-fields": "~2.0.3",
"graphql-scalars": "^1.11.1",
"graphql-tag": "^2.10.3",
"husky": ">=6",
"jest": "^27.2.5",
"jest-diff": "^27.2.5",
"jest-matcher-utils": "^25.4.0",
"lerna": "^3.20.2",
"lint-staged": ">=10",
"lodash": "^4.17.15",
"nexus": "^1.0.0",
"nexus-plugin-prisma": "^0.35.0",
"path": "^0.12.7",
"plain-tag": "^0.1.3",
"pluralize": "~7.0.0",
"prettier": "^3.0.3",
"react": "~16.12.0",
"react-admin": "^3.4.3",
"react-dom": "~16.13.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.0",
"semantic-release-monorepo": "^7.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^8.9.1",
"typescript": "^4.4.3"
},
"scripts": {
"clean": "lerna run clean --stream --parallel",
"build": "lerna run build --stream --parallel",
"lint": "eslint './**/*.ts'",
"lint:fix": "yarn lint --fix",
"test": "jest",
"prepare": "lerna bootstrap && husky install && yarn build",
"semantic-release": "semantic-release"
},
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/panter/ra-data-prisma.git"
},
"dependencies": {},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"release": {
"branches": [
"main",
"beta"
]
}
}