forked from directus/directus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.13 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
{
"name": "directus-monorepo",
"workspaces": [
"./app",
"./api",
"./docs",
"./packages/*"
],
"scripts": {
"lint": "npm-run-all --parallel --continue-on-error lint:*",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint \"**/*.{css,scss,vue}\"",
"format": "prettier --write \"**/*.{js,ts,vue,md}\"",
"dev": "lerna run dev --stream --parallel",
"build": "lerna run build",
"release": "lerna publish --force-publish --exact",
"test": "lerna run test",
"test:e2e": "jest tests -c tests/jest.config.js",
"test:e2e:watch": "npm run test:e2e -- --watch",
"posttest:e2e:watch": "ts-node --project ./tests/tsconfig.json --transpile-only ./tests/setup/teardown.ts",
"cli": "cross-env DIRECTUS_DEV=true NODE_ENV=development DOTENV_CONFIG_PATH=api/.env ts-node -r dotenv/config --script-mode --transpile-only api/src/cli/index.ts"
},
"devDependencies": {
"@types/dockerode": "^3.2.3",
"@types/jest": "^26.0.22",
"@types/listr": "^0.14.3",
"@types/node": "^15.0.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.23.0",
"axios": "^0.21.1",
"dockerode": "^3.3.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-prettier-vue": "^3.0.0",
"eslint-plugin-vue": "^7.8.0",
"globby": "^11.0.3",
"jest": "^26.6.3",
"knex": "^0.95.4",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"listr": "^0.14.3",
"mysql": "^2.18.1",
"nanoid": "^3.1.22",
"npm-run-all": "^4.1.5",
"oracledb": "^5.1.0",
"pg": "^8.6.0",
"prettier": "^2.3.0",
"simple-git-hooks": "^2.4.1",
"sqlite3": "^5.0.2",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"supertest": "^6.1.3",
"tedious": "^11.0.8",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.md": "prettier --write",
"*.{css,scss,vue}": "stylelint --fix"
}
}