forked from uberCad/uberCad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.05 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.05 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
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
{
"name": "client",
"version": "1.2.3",
"private": true,
"repository": "git@gitlab.com:Potter/uberCad.git",
"author": "Gary <netzver@gmail.com>",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/react": "^16.9.49",
"@types/react-css-transition-replace": "^2.1.3",
"@types/react-dom": "^16.9.8",
"@types/react-intl": "^3.0.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/react-router-redux": "^5.0.18",
"@types/react-test-renderer": "^16.9.3",
"@types/three": "^0.103.2",
"antd": "^3.26.2",
"axios": "^0.19.0",
"body-parser": "^1.18.3",
"bootstrap": "^3.3.7",
"dxf-parser": "0.5.1",
"immutability-helper": "^3.0.1",
"kmeans-js": "^0.1.2",
"lodash": "^4.17.20",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prop-types": "^15.6.1",
"react": "^16.12.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.12.0",
"react-intl": "^2.4.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.3",
"redux": "^4.0.4",
"redux-form": "^8.2.6",
"redux-mock-store": "^1.5.4",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"socket.io-client": "^2.3.0",
"stats.js": "^0.17.0",
"styled-components": "^5.1.1",
"three": "^0.110.0",
"three-dxf": "^0.3.1",
"three-orbit-controls": "^82.1.0",
"typesafe-actions": "^5.1.0",
"typescript": "^4.0.2"
},
"scripts": {
"build": "npm run build:css && react-scripts build",
"start": "npm-run-all -p watch:css start:js",
"heroku-postbuild": "npm run build",
"build:css": "node-sass src/ -o src/ --source-map true",
"watch:css": "npm run build:css && node-sass -w src/ -o src/ --recursive",
"start:js": "react-scripts start",
"test": "standard --verbose && babel-node ./node_modules/.bin/tape ./test/**/*.js --require ignore-styles --require ./test/setup.js | faucet",
"fix": "standard --verbose --fix | snazzy",
"eject": "react-scripts eject",
"jest": "react-scripts test --env=jsdom",
"lint": "eslint --fix src && echo 'Lint complete.'"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(three|react-redux)/)"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "^10.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.3.0",
"prettier": "^1.19.1",
"typescript-plugin-styled-components": "^1.4.4"
}
}