This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
48 lines (48 loc) · 1.55 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
{
"private": true,
"scripts": {
"build": "npm run build:ts && npm run build:ts:es",
"build:ts": "tsc -b packages/js packages/react",
"build:ts:es": "tsc -b packages/js/tsconfig.es.json packages/react/tsconfig.es.json",
"clean:generated": "find ./packages -name \"*.d.ts\" -type f -delete && find ./packages -name \"*.tsbuildinfo\" -type f -delete",
"start": "npm run build:ts -- --watch & npm run build:ts:es -- --watch",
"lint": "eslint .",
"test": "jest",
"prettier": "prettier --write ./packages/**/**/*.{ts,tsx}",
"prepublishOnly": "npm run build",
"postinstall": "lerna link",
"publish:canary": "lerna publish --canary",
"publish:stable": "lerna publish"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@testing-library/react": "^13.2.0",
"@types/jest": "^29.0.3",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.0.3",
"jest-cli": "^29.0.1",
"jest-environment-jsdom": "^29.0.3",
"lerna": "^6.0.1",
"prettier": "^2.3.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-test-renderer": "^18.1.0",
"ts-jest": "^29.0.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"engines": {
"node": "^16"
}
}