-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "react-neos",
"version": "0.12.0",
"license": "MIT",
"repository": "https://github.com/Earthmark/React-Neos",
"type": "module",
"readme": "README.md",
"scripts": {
"prepare": "npm run build",
"test": "npx jest",
"prebuild": "rimraf dist",
"build": "tsc",
"start": "ts-node ."
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"react-reconciler": "^0.29.0",
"ws": "^8.2.3"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@types/color-convert": "^2.0.0",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-reconciler": "^0.28.0",
"@types/react-test-renderer": "^18.0.0",
"@types/ws": "^8.2.0",
"color-convert": "^2.0.1",
"jest": "^28.1.2",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
}
}