-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
113 lines (113 loc) · 3.9 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"private": true,
"license": "MIT",
"scripts": {
"prepublish": "node scripts/prepublish.js",
"pretest": "lerna bootstrap",
"link": "cd packages/henri && yarn link",
"test:watch": "jest --watch --coverage --colors --runInBand --detectOpenHandles",
"test:cover": "jest --coverage",
"test:precommit": "jest --coverage",
"test:ci": "jest --coverage --forceExit --runInBand --verbose --bail",
"coveralls": "nyc --instrument=false --source-map=false report --temp-directory=./coverage --reporter=text-lcov | coveralls",
"publish-canary": "lerna publish --yes --skip-git --exact -c",
"packages:audit": "lerna exec --concurrency 1 -- yarn audit --ignore-engines",
"packages:clean": "lerna clean --yes",
"packages:install": "lerna exec --concurrency 1 -- yarn install --ignore-engines && yarn install --ignore-engines",
"packages:lock": "lerna exec -- rm -rf node_modules yarn.lock && lerna exec -- yarn install --ignore-engines",
"packages:upgrade": "yarn upgrade-interactive --latest --ignore-engines && lerna exec --concurrency 1 -- yarn upgrade-interactive --latest --force --ignore-engines",
"packages:bootstrap": "lerna bootstrap",
"packages:maintenance": "yarn run packages:clean && yarn run packages:install && yarn run packages:upgrade && yarn run packages:bootstrap && yarn run packages:yalc && exit",
"packages:yalc": "lerna exec -- yalc push"
},
"devDependencies": {
"@types/bcrypt-nodejs": "^0.0.31",
"@types/body-parser": "^1.17.1",
"@types/chalk": "^2.2.0",
"@types/compression": "^1.0.1",
"@types/config": "^0.0.36",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.7",
"@types/lodash": "^4.14.149",
"@types/minimist": "^1.2.0",
"@types/mongoose": "^5.5.42",
"@types/node": "^14.0.27",
"@types/passport": "^1.0.2",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/waterline": "^0.13.0",
"@types/winston": "^2.4.4",
"babel-eslint": "^10.0.3",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.2",
"eslint": "^7.5.0",
"eslint-config-react-app": "^5.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.0",
"jest": "^26.2.1",
"lerna": "^3.20.2",
"lint-staged": "^10.0.2",
"maildev": "^1.1.0",
"nyc": "^15.0.0",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"eslint --fix",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"template/.*",
"pages/.*",
"node_modules/*",
"packages/.*/build",
"packages/.*/build-es5",
"packages/cli/scripts/test.js",
"packages/demo",
"packages/disk",
"packages/mssql",
"packages/mysql",
"packages/postgresql",
"packages/react",
"packages/sequelize",
"packages/websocket",
"packages/jest-runtime/src/__tests__/test_root.*",
"website/.*",
"integration_tests/runtime-internal-module-registry/__mocks__"
],
"collectCoverageFrom": [
"packages/**/**/*.js",
"!**/bin/**",
"!**/cli/**",
"!**/view/**",
"!**/perf/**",
"!**/test/**"
]
},
"dependencies": {
"eslint-plugin-react-hooks": "^4.0.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && jest --coverage"
}
}
}