forked from bldrs-ai/Share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.67 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
{
"name": "bldrs",
"version": "1.0.0-r293",
"main": "src/index.jsx",
"homepage": "https://github.com/bldrs-ai/Share",
"bugs": {
"url": "https://github.com/bldrs-ai/Share/issues"
},
"scripts": {
"clean": "rm -rf docs ; cp -r public docs",
"new-version": "node --experimental-json-modules src/utils/version.mjs > package.json.new && mv package.json.new package.json",
"copy-web-asm": "cp node_modules/web-ifc/*.wasm public/static/js",
"build": "yarn copy-web-asm && yarn clean && yarn new-version && node config/build.js",
"serve": "yarn build && node config/serve.js",
"lint": "yarn eslint `find src -name '*.jsx'` `find src -name '*.[m]js'`",
"test": "jest",
"precommit": "yarn lint && yarn test",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "^7.15.5",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.1.1",
"@mui/lab": "^5.0.0-alpha.48",
"@mui/material": "^5.0.1",
"@mui/styled-engine": "^5.0.1",
"@mui/styles": "^5.1.0",
"@octokit/rest": "^18.12.0",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"three": "^0.135",
"web-ifc-viewer": "^1.0.137",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@alex_neo/jest-expect-message": "^1.0.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-syntax-import-assertions": "^7.16.7",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@pablo-mayrgundter/cookies.js": "^1.0.0",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"babel-jest": "^27.4.4",
"canvas": "~2.8.0",
"esbuild": "^0.14.22",
"esbuild-plugin-svgr": "^1.0.0",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gl": "^5.0.0",
"husky": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.3",
"jsdom": "^19.0.0"
},
"jest": {
"verbose": false,
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"src/Share.test.js"
],
"transform": {
"\\.[jt]sx?$": "babel-jest",
"^.+\\.svg$": "<rootDir>/svgTransform.js"
},
"transformIgnorePatterns": [
"/node_modules/(?!(web-ifc|web-ifc-three|web-ifc-viewer|three)/)"
],
"moduleNameMapper": {
"^.+\\.css$": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js",
"@alex_neo/jest-expect-message"
]
}
}