-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage-base.json
79 lines (79 loc) · 2.65 KB
/
package-base.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-component-toolkit",
"main": "index.ts",
"description": "Component Library",
"version": "0.9.1",
"types": "index.d.ts",
"scripts": {
"ladle:dev": "npx msw init ./build_artifacts/public && ladle serve",
"ladle:prod": "npx msw init ./build_artifacts/public && ladle build && ladle preview",
"build": "npm run clean && npm run rollup",
"createnew": "node createnew.mjs",
"packagewidget": "node packagewidget.mjs",
"hostwidget": "node hostwidget.mjs",
"deploywidget": "node deploywidget.mjs",
"createtemplate": "node newcomponent.mjs",
"removecomponent": "node removecomponent.mjs",
"clean": "shx --silent rm -rf dist && shx --silent rm -rf build_artifacts && shx --silent rm -rf src/unittests/coverage",
"fullclean": "npm run clean && shx --silent rm -rf node_modules && shx --slient rm package.json",
"rollup": "rollup -c",
"test": "jest",
"test:update": "jest --updateSnapshot",
"test:watch": "jest --watch"
},
"author": "Steve Lindsay; Daniel Kondrashevich; Jenny Chen",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^7.4.0",
"@ladle/react": "^2.1.5",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@swc/core": "^1.2.224",
"@swc/jest": "^0.2.22",
"@testing-library/dom": "^8.16.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.2",
"@types/node": "^18.15.3",
"@types/jest": "^29.4.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-mock": "^29.4.1",
"msw": "^1.0.0",
"react-test-renderer": "^18.2.0",
"rollup": "^2.77.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-typescript2": "^0.32.1",
"rollup-plugin-visualizer": "^5.7.1",
"shx": "^0.3.4",
"dotenv": "^16.0.3",
"typescript": "^4.7.4",
"uuid": "^9.0.0"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mantine/core": "^5.10.3",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.6",
"axios": "^0.27.2",
"bingmaps-react": "^1.2.10",
"core-js": "^3.27.2",
"postprocessing": "^6.28.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-force-graph-3d": "^1.21.12",
"react-is": "^16.8",
"react-markdown": "^8.0.5",
"rehype-raw": "^6.1.1",
"styled-components": "^5.0.0",
"three": "^0.151.3",
"three-spritetext": "^1.6.5"
},
"msw": {
"workerDirectory": "build_artifacts/public"
}
}