-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
127 lines (127 loc) · 3.92 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "cslabs-webapp",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "yarn run watch:react",
"watch:react": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint:style": "stylelint src/**/*.scss",
"lint:ts": "tslint -p ./",
"lint": "echo Linting.... && run-p lint:ts lint:style && echo Finished Linting with 0 errors",
"watch:lint": "watch \"npm run lint --silent\" ./src",
"analyze:vendor": "source-map-explorer build/static/js/1.*",
"analyze:app": "source-map-explorer build/static/js/main.*",
"check-npm": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('You must use Yarn to install, not NPM')\"",
"preinstall": "yarn run check-npm"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.11.1",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@sentry/browser": "^5.11.2",
"@types/bad-words": "^3.0.1",
"@types/history": "^4.7.3",
"@types/humanize-duration": "^3.18.0",
"@types/jwt-decode": "^2.2.1",
"@types/luxon": "^1.21.0",
"@types/node": "^13.7.0",
"@types/novnc-core": "^0.1.1",
"@types/react": "^16.9.2",
"@types/react-burger-menu": "^2.2.1",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.4",
"@types/react-router": "^5.1.2",
"@types/react-router-bootstrap": "^0.24.5",
"@types/react-router-dom": "^5.1.3",
"@types/react-select": "^3.0.11",
"@types/react-tag-autocomplete": "^6.1.1",
"@types/uuid": "^3.4.6",
"@types/winston": "^2.4.4",
"@types/yup": "^0.26.27",
"@types/zxcvbn": "^4.4.0",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"bad-words": "^3.0.4",
"badwords-list": "^1.0.0",
"browser-detect": "^0.2.28",
"connected-react-router": "^6.6.1",
"formik": "2.0.3",
"history": "^4.10.1",
"humanize-duration": "^3.21.0",
"jwt-decode": "^2.2.0",
"luxon": "^1.21.3",
"node-sass": "^4.12.0",
"novnc-core": "^0.2.1",
"object-to-formdata": "^3.0.6",
"react": "^16.9.0",
"react-app-polyfill": "^1.0.2",
"react-bootstrap": "^1.0.0-beta.16",
"react-burger-menu": "^2.5.4",
"react-copy-to-clipboard": "^5.0.3",
"react-dev-utils": "^10.1.0",
"react-dom": "^16.9.0",
"react-pdf": "^4.1.0",
"react-redux": "^7.1.3",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.1.0",
"react-select": "^3.1.0",
"react-tag-autocomplete": "^6.3.0",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"uuid": "^3.4.0",
"winston": "^3.2.1",
"yup": "^0.28.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^25.1.1",
"@types/puppeteer": "^2.0.1",
"@types/react-pdf": "^4.0.3",
"@types/react-tag-autocomplete": "^6.1.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.4",
"faker": "^4.1.0",
"jest": "24.9.0",
"jest-cli": "^25.2.3",
"npm-run-all": "^4.1.5",
"puppeteer": "^2.1.1",
"react-icons": "^4.3.1",
"react-scripts": "^3.4.1",
"source-map-explorer": "^2.2.2",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.9.4",
"tslint": "^6.0.0",
"tslint-react": "^4.0.0",
"typescript": "^3.7.5",
"watch": "^1.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=8.10 <=12",
"npm": ">=6.4.0"
}
}