-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.88 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
{
"name": "tourname",
"description":
"An OSS service for managing tournaments within an organization.",
"version": "0.0.0",
"private": true,
"author": "Nicola Molinari <me@emmenko.org> (http://emmenko.org)",
"license": "BSD-3-Clause",
"scripts": {
"postinstall":
"check-node-version --package --print && lerna run postinstall",
"lint": "jest --config jest.eslint.config.js",
"format": "npm run format:js & npm run format:graphql && npm run format:md",
"format:js": "prettier --write 'packages/**/*.js'",
"format:graphql": "prettier --write 'packages/**/*.graphql'",
"format:md": "prettier --parser markdown --write 'packages/**/*.md'",
"start":
"lerna run --parallel --scope \"{@tourname/server,@tourname/client}\" start",
"test":
"check-node-version --package && echo \"Error: no test specified\" && exit 1",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "lint-staged"
},
"engines": {
"node": ">=8",
"npm": ">=5",
"yarn": "~1.3.0||>=1.5"
},
"workspaces": ["packages/*"],
"devDependencies": {
"@commitlint/cli": "7.0.0",
"@commitlint/config-conventional": "7.0.1",
"babel-eslint": "8.2.5",
"check-node-version": "3.2.0",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint-config-prettier": "2.9.0",
"eslint-formatter-pretty": "1.3.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jest": "21.17.0",
"eslint-plugin-jsx-a11y": "6.1.0",
"eslint-plugin-prettier": "2.6.1",
"eslint-plugin-react": "7.10.0",
"husky": "0.14.3",
"jest": "23.3.0",
"jest-runner-eslint": "0.6.0",
"jest-silent-reporter": "0.0.5",
"jest-plugin-filename": "0.0.1",
"lerna": "2.11.0",
"lint-staged": "7.2.0",
"npm-run-all": "4.1.3",
"prettier": "1.13.7"
},
"jest": {
"testEnvironment": "node",
"testRegex": "\\.spec\\.js$"
}
}