-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 969 Bytes
/
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
{
"name": "react-solid-state",
"description": "Auto tracking state management for modern React",
"version": "0.27.3",
"author": "Ryan Carniato",
"license": "MIT",
"homepage": "https://github.com/solidjs/react-solid-state#readme",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "npm run clean",
"clean": "rimraf dist/ coverage/",
"build": "tsc",
"test": "jest"
},
"dependencies": {
"solid-js": "^1.3.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/preset-env": "7.13.8",
"@babel/preset-react": "^7.8.0",
"@babel/preset-typescript": "7.13.0",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.0",
"jest": "^26.6.3",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-testing-library": "^7.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
}
}