-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.32 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
{
"private": true,
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"clean:dist": "lerna exec --concurrency 1 -- rimraf -rf dist",
"clean": "lerna clean && lerna run clean && yarn clean:dist",
"build": "lerna run build --ignore react-typescript",
"dev": "jest \"(.*)\\.spec\\.(ts|tsx)\" --watch",
"lerna:init": "lerna bootstrap --ignore-scripts && lerna link --force-local",
"lint": "eslint src/**/*.{ts,tsx}",
"postinstall": "yarn lerna:init && yarn build",
"test": "jest \"(.*)\\.spec\\.ts\" --coverage --coverageDirectory=reports && coveralls < reports/lcov.info"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"coveralls": "~3.1.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.6.3",
"jest-extended": "~0.11.5",
"jest-leak-detector": "~26.6.2",
"lerna": "^3.22.1",
"react": "17.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"tslib": "^2.1.0",
"typescript": "^4.1.5",
"weak-napi": "^2.0.2"
},
"dependencies": {}
}