-
-
Notifications
You must be signed in to change notification settings - Fork 743
/
package.json
95 lines (95 loc) · 2.8 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
{
"npmClient": "yarn",
"private": true,
"author": "Prev Wong <prevwong@gmail.com>",
"scripts": {
"dev": "./scripts/dev.sh",
"dev:site": "lerna run start --scope site",
"dev:all": "run-p dev dev:site",
"dev:yalc": "lerna run dev:yalc --parallel",
"clean": "lerna run clean --stream",
"build": "lerna run build --stream --ignore site --ignore 'example-*'",
"build:all": "lerna run build --stream",
"deploy": "cross-env ENV=production ./scripts/deploy.sh",
"prettier": "prettier --write .",
"cy:test": "cypress run",
"cy:open": "cypress open",
"test": "jest",
"test:watch": "cross-env NODE_ENV=test jest --watchAll",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"publish": "run-s build lint test changeset:publish"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.12",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.0",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.4.0",
"@rollup/plugin-typescript": "11.0.0",
"@testing-library/react": "13.4.0",
"@types/jest": "29.4.0",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "2.14.0",
"@typescript-eslint/parser": "2.14.0",
"all-contributors-cli": "6.11.2",
"babel-eslint": "10.0.3",
"cross-env": "6.0.3",
"cypress": "6.5.0",
"enzyme": "3.11.0",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "3.1.0",
"jest": "29.4.2",
"jest-environment-jsdom": "^29.4.2",
"lerna": "7.3.0",
"lint-staged": "9.5.0",
"nodemon": "2.0.20",
"npm-run-all": "4.1.5",
"prettier": "2.0.1",
"pretty-quick": "2.0.1",
"rimraf": "3.0.2",
"rollup": "2.79.0",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"workspaces": {
"packages": [
"packages/*",
"site",
"examples/*"
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prevwong/craft.js.git"
},
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx}": [
"pretty-quick --staged",
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "jest"
}
},
"packageManager": "yarn@3.6.3"
}