-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "holycow",
"version": "1.2.0",
"keywords": [
"state management",
"react"
],
"license": "MIT",
"author": "sultan99",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sultan99/holycow.git"
},
"scripts": {
"build": "node scripts/bulk-run.mjs 'run build'",
"lint": "node scripts/bulk-run.mjs 'run lint'",
"publish": "node scripts/bulk-run.mjs 'publish'",
"sync-versions": "node scripts/sync-versions.mjs",
"test": "node scripts/bulk-run.mjs 'run test'",
"tsc": "node scripts/bulk-run.mjs 'run tsc'"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-jest": "^29.4.3",
"eslint": "^8.35.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
}
}