forked from reflexjs/reflexjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.21 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
{
"name": "reflexjs",
"private": true,
"workspaces": [
"packages/*",
"starters/*",
"sites/*",
"e2e-tests/*",
"examples/*"
],
"scripts": {
"test": "jest",
"test:e2e": "lerna run test:e2e",
"test:e2e:ci": "lerna run test:e2e:ci",
"format": "prettier --write \"**/*.js{,on}\" \"**/*.mdx\"",
"start": "lerna run start --parallel",
"prepare": "lerna run prepare",
"lint": "eslint --cache --ext .js,.jsx .",
"release": "lerna publish && npm run sync:all",
"sync:all": "npm run sync:starters && npm run sync:sites && npm run sync:examples",
"sync:starters": "./scripts/sync.sh \"starters/*\"",
"sync:examples": "./scripts/sync.sh \"examples/*\"",
"sync:sites": "./scripts/sync.sh \"sites/*\""
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"testMatch": [
"**/packages/**/test/*.{js,ts,tsx}"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/",
"/.cache/",
"/dist/"
]
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.6",
"@testing-library/cypress": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"axe-core": "^3.5.5",
"babel-eslint": "^10.1.0",
"cypress": "^4.9.0",
"cypress-axe": "^0.8.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-mdx": "^1.7.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"jest-emotion": "^10.0.32",
"lerna": "^3.20.2",
"microbundle": "^0.12.1",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^16.13.1",
"start-server-and-test": "^1.11.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^9.1.2"
}
}