forked from neuralmagic/sparsify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.54 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
{
"name": "sparsify",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@nivo/bar": "^0.62.0",
"@nivo/line": "^0.62.0",
"@reduxjs/toolkit": "^1.4.0",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^5.1.5",
"axios": "^0.21.1",
"d3": "^6.1.1",
"d3-format": "^1.4.4",
"fontsource-roboto": "^2.1.4",
"lodash.debounce": "^4.0.8",
"moment": "^2.28.0",
"prop-types": "^15.7.2",
"query-string": "^6.13.2",
"ramda": "^0.27.0",
"ramda-fantasy": "^0.8.0",
"react": "^16.13.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.0",
"react-dropzone": "^11.2.0",
"react-file-drop": "^3.0.7",
"react-jss": "^10.0.4",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-router-transition": "^2.0.0",
"react-scripts": "^3.4.3",
"react-swipeable-views": "^0.13.9",
"react-syntax-highlighter": "^13.5.3",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"typescript": "~3.7.2",
"uuidv4": "^6.0.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"prettier": "^2.1.1"
},
"scripts": {
"lint": "yarn prettier --write src/ui",
"start": "export REACT_APP_VERSION=$npm_package_version && react-scripts start",
"start_local": "export REACT_APP_VERSION=$npm_package_version && export REACT_APP_API_ROOT='http://0.0.0.0:5543/api' && react-scripts start",
"build": "export REACT_APP_VERSION=$npm_package_version && export REACT_APP_API_ROOT='' && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"printWidth": 88,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
}
}