-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.82 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.82 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@nodl/react",
"version": "1.0.4",
"description": "React implementation of the Nodl framework",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "Emil Widlund",
"license": "MIT",
"private": false,
"files": [
"build/*"
],
"scripts": {
"build": "webpack --mode=production --devtool=inline-source-map",
"build:prod": "webpack --mode=production --devtool=source-map",
"generate:docs": "typedoc ./src/index.ts",
"prepare": "yarn run build:prod",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilwidlund/nodl.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/emilwidlund/nodl/issues"
},
"homepage": "https://github.com/emilwidlund/nodl#readme",
"dependencies": {
"@nodl/core": "^1.0.9",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.26",
"lodash": "^4.17.21",
"mobx": "^6.7.0",
"mobx-react-lite": "^3.4.0",
"react-draggable": "^4.4.5",
"typescript": "^4.9.4"
},
"devDependencies": {
"@emotion/jest": "^11.10.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.2.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "^18.0.0",
"@types/uuid": "^9.0.0",
"copy-webpack-plugin": "^11.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.3",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typedoc": "^0.23.26",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}