-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.51 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
{
"private": true,
"workspaces": [
"packages/*"
],
"author": "Fredrik Nicol <fredrik.nicol@gmail.com>",
"devDependencies": {
"@testing-library/react": "13.3.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"gzip-size": "^7.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lerna": "^5.3.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-closure-compiler-js": "^1.0.6",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^28.0.7",
"typescript": "~4.7.4"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"release": "lerna publish --pre-dist-tag next",
"build": "npm run clean && lerna run build --",
"clean": "lerna run clean --parallel",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test:code": "jest",
"test:types": "jest --testMatch \"**/src/**/typecheck.spec.(ts|tsx)\"",
"test": "jest --testMatch \"**/src/**/*.spec.(ts|tsx)\"",
"lazy": "tsc && npm run lint -- --fix && npm run test",
"example": "lerna --scope glitz-example run start --",
"benchmark": "lerna --scope glitz-benchmark run --loglevel=silent"
}
}