-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.56 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
{
"name": "statify",
"version": "0.1.0",
"scripts": {
"build:dev": "webpack --node-env development",
"build:prod": "webpack --node-env production",
"dev": "webpack serve --node-env development",
"prod": "webpack serve --node-env production",
"eslint": "eslint src/",
"cypress:run": "cypress run",
"cypress:test": "start-server-and-test prod http://127.0.0.1:8000 cypress:run",
"cypress:testopen": "start-server-and-test dev http://127.0.0.1:8000 cypress:open",
"cypress:open": "cypress open",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "jest --verbose",
"test:silent": "jest",
"test:watch": "jest --watch",
"test:snapshot": "jest -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccnmtl/statify.git"
},
"dependencies": {
"@react-pdf/renderer": "^4.0.0",
"@sentry/react": "^8.0.0",
"@types/d3": "^7.4.0",
"@types/file-saver": "^2.0.5",
"@types/seedrandom": "3.0.5",
"babel-loader": "^9.1.2",
"bootstrap": "^5.2.3",
"d3": "^7.8.5",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-ga4": "^2.1.0",
"react-router-dom": "^7.0.0",
"seedrandom": "3.0.5",
"simple-statistics": "^7.8.3",
"typescript": "^5.0.4"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.0",
"babel-jest": "^29.6.2",
"css-loader": "^7.0.0",
"cypress": "^13.1.0",
"cypress-axe": "^1.5.0",
"eslint": "^9.9.1",
"eslint-plugin-cypress": "^4.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-security": "^3.0.0",
"globals": "^15.9.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.3",
"mini-css-extract-plugin": "^2.7.5",
"parse-svg-path": "^0.1.2",
"react-test-renderer": "^19.0.0",
"start-server-and-test": "^2.0.0",
"style-loader": "^4.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"webpack": "^5.82.0",
"webpack-cli": "^6.0.0",
"webpack-dev-server": "^5.0.0"
}
}