-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.56 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
{
"name": "precept",
"scripts": {
"build:apps": "rimraf build && lerna run build --scope=@apps/*",
"build:packages": "npm run clean && lerna run build --scope=precept --scope=precept-*",
"clean": "lerna run clean",
"clean:nm": "lerna clean",
"commit": "cz",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky install",
"release": "npm run build:packages && lerna publish --no-private",
"setup": "npm i && lerna init",
"start:froyojs": "cd apps/froyojs && npm start",
"start:react": "cd apps/react && npm start",
"start:vue": "cd apps/vue && npm start",
"test": "run-s test:*",
"test:froyojs": "cross-env BABEL_ENV=froyojs jest froyojs.test.js",
"test:react": "cross-env BABEL_ENV=react jest react.test.js"
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@mdx-js/react": "^1.6.22",
"babel-jest": "^29.3.1",
"clsx": "^1.2.1",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@rollup/plugin-replace": "^5.0.2",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"commitizen": "^4.2.6",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"froyojs": "^0.7.2",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^6.4.1",
"npm-run-all": "^4.1.5",
"prettier": "2.8.3",
"pretty-quick": "^3.1.3",
"rimraf": "^4.1.2",
"testing-library-froyojs": "^0.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": [
"packages/*",
"apps/*"
]
}