-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 KB
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
{
"name": "react-experiment-builder",
"version": "0.0.6",
"description": "Online experiment builder using React",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"author": "Tony Juntao Hu",
"license": "MIT",
"files": [
"dist",
"src"
],
"peerDependencies": {
"react": "^18.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.24.6",
"@eslint/js": "^9.2.0",
"@stylistic/eslint-plugin": "^2.1.0",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@types/react": "^18.3.1",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"type": "module",
"dependencies": {
"dexie": "^4.0.4",
"dexie-react-hooks": "^1.1.7"
}
}