This repository has been archived by the owner on Apr 3, 2022. It is now read-only.
forked from ManuelHaag/gw2-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.24 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prebootstrap": "yarn",
"bootstrap": "lerna run rebuild --stream",
"docs": "lerna run develop --scope=gw2-ui-docs --stream",
"deploy": "lerna run deploy --stream",
"lint": "npm-run-all lint:*",
"lint:code": "eslint --fix \"packages/**/src/**/*.{js,jsx}\"",
"lint:other": "npm-run-all \"prettier --list-different --write\"",
"publish": "lerna run rebuild && lerna publish",
"prettier": "prettier \"**/*.{md,css,scss,yaml,yml}\"",
"develop": "npm-run-all -p watch docs",
"pretest": "npm-run-all lint",
"test": "echo \"No tests configured\"",
"watch": "lerna run watch --parallel"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"testRegex": ".*spec\\.jsx?$",
"testPathIgnorePatterns": [
"/es/",
"/lib/",
"/node_modules/"
],
"transform": {
"^.+\\.jsx?$": "<rootDir>/jest-transformer.js"
},
"verbose": true
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.1",
"@babel/runtime": "7.11.2",
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"@emotion/babel-plugin-jsx-pragmatic": "^0.1.5",
"babel-eslint": "10.1.0",
"cross-env": "5.2.0",
"eslint": "5.11.1",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.2",
"husky": "1.3.1",
"jest": "23.6.0",
"lerna": "3.8.4",
"npm-run-all": "4.1.5",
"prettier": "1.15.3",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-redux": "7.2.0",
"redux": "4.0.0",
"redux-saga": "1.0.0",
"rimraf": "2.6.3"
},
"engines": {
"node": ">=8.11.0",
"yarn": ">=1.2.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}