-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.17 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": "zustand-store",
"version": "0.0.6",
"description": "zustand store",
"main": "dist/index.js",
"scripts": {
"start": "node build/src/index.js",
"clean": "rimraf coverage build tmp",
"prebuild": "yarn run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "yarn run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write . --ignore-path .prettierignore",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "~27.5",
"@types/node": "~16",
"@typescript-eslint/eslint-plugin": "~5.26",
"@typescript-eslint/parser": "~5.26",
"eslint": "~8.16",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "~26.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "~28.1",
"prettier": "^2.7.1",
"ts-jest": "~28.0",
"tsutils": "~3.21",
"typescript": "~4.7"
},
"author": "yunlu frontend",
"license": "Apache-2.0",
"dependencies": {
"immer": "^9.0.15",
"zustand": "^4.1.1"
},
"volta": {
"node": "16.13.0"
}
}