forked from reflexjs/reflexjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.37 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
{
"name": "reflexjs-monorepo",
"private": true,
"workspaces": [
"packages/*",
"starters/*"
],
"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",
"clean": "lerna clean && rimraf packages/*/{dist,rts2_cache*,.next}",
"lint": "eslint --cache --ext .js,.jsx .",
"release": "lerna publish && npm run sync:all",
"sync:all": "npm run sync:starters",
"sync:starters": "./scripts/sync.sh \"starters/*\""
},
"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}",
"**/packages/**/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/",
"/.cache/",
"/dist/"
],
"snapshotSerializers": [
"@emotion/jest/serializer"
]
},
"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/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.9.6",
"@emotion/jest": "^11.2.1",
"@testing-library/cypress": "^7.0.0",
"@types/node": "^14.14.7",
"@types/react": "^17.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.12.2",
"eslint": "^7.13.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": "^26.6.3",
"lerna": "^3.20.2",
"microbundle": "^0.13.3",
"plop": "^2.7.4",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"sharp": "^0.26.3",
"start-server-and-test": "^1.11.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^9.1.2"
}
}