-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.12 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
{
"name": "stats-interactives",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"watch-test": "nodemon --watch src --verbose -x 'make test'",
"serve": "webpack serve --mode development",
"serve-prod": "webpack serve --mode production --no-live-reload --no-hot",
"cypress:run": "cypress run",
"cypress:test": "start-server-and-test serve-prod http://localhost:3000 cypress:run",
"cypress:open": "cypress open",
"snapshot": "jest -u",
"eslint": "eslint src/*.jsx",
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"stage": "webpack --mode production",
"prod": "webpack --mode production"
},
"author": "Nick Buonincontri",
"license": "ISC",
"devDependencies": {
"@babel/core": "~7.26.0",
"@babel/preset-env": "~7.26.0",
"@babel/preset-react": "~7.26.3",
"@babel/eslint-parser": "^7.18.2",
"babel-loader": "~9.2.1",
"cheerio": "1.0.0-rc.3",
"cypress": "^14.0.0",
"enzyme-adapter-react-16": "~1.15.2",
"eslint": "~8.57.0",
"eslint-plugin-cypress": "^3.0.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-security": "~3.0.0",
"jest": "~28.1.1",
"jest-environment-jsdom": "29.7.0",
"nodemon": "~3.1.0",
"start-server-and-test": "^2.0.0",
"webpack": "~5.97.0",
"webpack-cli": "~6.0.1",
"webpack-dev-server": "~5.2.0"
},
"dependencies": {
"@sentry/browser": "^8.0.0",
"autoprefixer": "~10.4.0",
"babel-core": "~7.0.0-bridge.0",
"bootstrap": "~4.6.0",
"css-loader": "~7.1.0",
"enzyme": "~3.11.0",
"jStat": "~1.7.1",
"mathjs": "~14.0.0",
"node-sass": "~9.0.0",
"postcss": "8.5.0",
"postcss-loader": "~8.1.0",
"prop-types": "~15.8.1",
"react": "~16.14.0",
"react-dom": "~16.14.0",
"react-ga4": "~2.1.0",
"react-katex": "^3.0.1",
"react-router-dom": "~5.3.0",
"react-test-renderer": "~16.14.0",
"react-transition-group": "~4.4.1",
"rheostat": "~4.1.1",
"sass-loader": "~16.0.0",
"seedrandom": "~3.0.1",
"style-loader": "~4.0.0",
"victory": "~37.3.0"
}
}