forked from directus/directus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2 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
{
"name": "directus-monorepo",
"private": true,
"workspaces": [
"./app",
"./api",
"./packages/*"
],
"scripts": {
"cli": "NODE_ENV=development SERVE_APP=false DOTENV_CONFIG_PATH=api/.env ts-node -r dotenv/config --script-mode --transpile-only api/src/cli/run.ts",
"format": "prettier --write \"**/*.{md,y?(a)ml,json}\"",
"lint": "eslint .",
"test:blackbox": "jest tests -c tests-blackbox/jest.config.js",
"test:blackbox:watch": "jest tests -c tests-blackbox/jest.config.js --watch",
"posttest:blackbox:watch": "ts-node --project ./tests-blackbox/tsconfig.json --transpile-only ./tests-blackbox/setup/teardown.ts",
"test:e2e": "jest tests -c tests/jest.config.js",
"test:e2e:watch": "jest tests -c tests/jest.config.js --watch",
"posttest:e2e:watch": "ts-node --project ./tests/tsconfig.json --transpile-only ./tests/setup/teardown.ts"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{md,y?(a)ml,json}": "prettier --write"
},
"devDependencies": {
"@directus/shared": "workspace:*",
"@types/jest": "29.4.0",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.191",
"@types/seedrandom": "3.0.4",
"@types/supertest": "2.0.12",
"@types/uuid": "9.0.0",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"axios": "1.3.3",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.9.0",
"globby": "11.1.0",
"jest": "29.4.2",
"jest-environment-node": "29.4.2",
"js-yaml": "4.1.0",
"json-to-graphql-query": "2.2.5",
"knex": "2.4.2",
"lint-staged": "13.1.2",
"listr2": "5.0.7",
"lodash": "4.17.21",
"prettier": "2.8.4",
"seedrandom": "3.0.5",
"simple-git-hooks": "2.8.1",
"supertest": "6.3.3",
"ts-jest": "29.0.5",
"typescript": "4.9.5",
"uuid": "9.0.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.5.0"
},
"volta": {
"node": "16.15.0",
"npm": "8.10.0"
}
}