-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.11 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": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"lint": "eslint packages/*/src/**/*.{js,ts}",
"test": "jest",
"test:ci": "jest --ci --coverage",
"clean": "npm run clean --workspaces",
"release": "npm run clean && npm run build && npm run test && npx changeset publish"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.24.2",
"@rollup/plugin-typescript": "^8.3.4",
"@types/jest": "^28.1.6",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-jest": "^28.1.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"graphql": "^16.5.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"ws": "^8.8.1"
},
"browserslist": [
"last 1 Chrome versions",
"node >= 14"
]
}