-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.64 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
{
"name": "traffic-simulator",
"version": "0.1.0",
"private": true,
"config": {
"blanket": {
"pattern": "/coffee/",
"loader": "./node-loaders/coffee-script",
"data-cover-reporter-options": {
"shortnames": true
}
}
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.0",
"@mui/material": "^5.14.0",
"axios": "^1.4.0",
"blanket": "^1.2.3",
"chai": "^4.3.7",
"chroma-js": "^2.4.2",
"dat-gui": "^0.5.0",
"jquery": "^3.6.4",
"jquery-mousewheel": "^3.1.13",
"mqtt": "^4.3.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.150.1",
"underscore": "^1.13.6",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"browserify": "^17.0.0",
"coffee-script": "^1.12.7",
"coffeeify": "^3.0.1",
"coffeescript": "^2.7.0",
"express": "^4.18.2",
"gulp": "^4.0.2",
"gulp-coffee": "^3.0.3",
"gulp-coffeelint": "^0.6.0",
"gulp-concat": "^2.6.1",
"gulp-mocha": "^8.0.0",
"gulp-notify": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"html-inline-css-webpack-plugin": "^1.11.1",
"html-inline-script-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.3",
"react-app-rewired": "^2.2.1",
"react-scripts": "5.0.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"//": "-----COFFEE SCRIPTS-----",
"ctest": "gulp test",
"cstart": "gulp watch",
"cbuild": "gulp build",
"///": "-----REACT SCRIPTS-----",
"start2": "react-scripts start",
"build2": "gulp build; react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"////": "-----OVVERIDES SCRIPTS-----",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"/////": "-----OTHER SCRIPTS-----",
"gh-pages": "gulp build && npm run build && cp ./build/index.html . && sed -i '' 's|./coffee-main.js|./public/coffee-main.js|g' ./index.html"
},
"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"
]
}
}