-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "nau",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.2.0",
"@types/jest": "^28.1.0",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"babel-jest": "^29.0.2",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "^16.4.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^29.0.3",
"lerna": "^6.0.0",
"prettier": "^2.2.1",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"scripts": {
"prebuild": "yarn lerna exec -- rimraf dist --ignore=example-app",
"build": "yarn lerna exec -- yarn build --ignore=example-app",
"test": "jest",
"lint": "eslint \"packages/**/src/**/*.{js,jsx,ts,tsx}\"",
"start:docs": "cd docs && yarn start",
"build:docs": "cd docs && yarn build"
}
}