-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
49
50
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"release": "lerna publish",
"lint": "eslint packages/*/src/** --ext .ts,.tsx,.js",
"format": "eslint --fix \"packages/*/src/**/*.{js,ts,tsx}\"",
"clean": "lerna clean",
"type-check": "tsc",
"test": "cross-env NODE_ENV=test jest",
"test:ci": "yarn test -- --ci",
"test:watch": "yarn test -- --watch",
"build": "yarn build:types && lerna run build --stream",
"build:bundle": "lerna run build:bundle --stream",
"build:clean": "lerna run build:clean --stream",
"build:types": "ttsc --build",
"test:coverage": "yarn test -- --coverage",
"prepare": "yarn run build:types"
},
"devDependencies": {
"@anansi/babel-preset": "^1.2.6",
"@anansi/eslint-plugin": "^0.9.9",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@types/jest": "^26.0.4",
"@types/react": "^16.9.43",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-jest": "^26.1.0",
"conventional-changelog-anansi": "^0.1.1",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"react": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.21.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^6.1.0",
"ts-jest": "^26.1.2",
"ttypescript": "^1.5.10",
"typescript": "^3.9.7"
}
}