-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.26 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@smb/display",
"version": "2.0.0",
"description": "Components library for 3d rendering",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src/assets/",
"tools/",
"package.json",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d/ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"./smbDisplay": {
"types": "./dist/index.d/ts",
"import": "./dist/esm/smbDisplay.js"
}
},
"scripts": {
"build": "rollup -c; npm pack",
"compile": "tsc",
"test": "jest",
"test:ci": "npm run test -- --testResultsProcessor=\"jest-junit\" --watchAll=false --ci --coverage",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"lint:fixstaged": "git diff --name-only --staged --diff-filter=AM | xargs eslint --fix",
"storybook": "storybook dev -p 6006",
"semantic-release": "semantic-release",
"build-storybook": "storybook build"
},
"bin": {
"glb2json": "./tools/glb2json.cjs"
},
"author": "Codemart and Xailabs",
"license": "GPLV3",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@storybook/addon-essentials": "^7.0.2",
"@storybook/addon-interactions": "^7.0.2",
"@storybook/addon-links": "^7.0.2",
"@storybook/blocks": "^7.0.2",
"@storybook/react": "^7.0.2",
"@storybook/react-webpack5": "^7.0.2",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.33",
"@types/three": "^0.150.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-jest": "^29.5.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-junit": "^15.0.0",
"msw": "^1.2.1",
"msw-storybook-addon": "^1.8.0",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^7.0.2",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"typescript-eslint": "^0.0.1-alpha.0"
},
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^12.0.1",
"@semantic-release/npm": "^10.0.3",
"@types/three": "^0.150.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^21.0.2",
"three": "^0.151.3"
}
}