-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.91 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.91 KB
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": "craig",
"version": "1.17.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"ci-check": "npm run format:diff",
"clean": "yarn cache clean && yarn install",
"eject": "next eject",
"format": "prettier --write \"**/*.{js,md,scss}\"",
"format:diff": "prettier --list-different \"**/*.{js,md,scss}\"",
"format:staged": "prettier --write",
"start": "NODE_ENV=development PORT=3000 npx serve@latest ./build",
"test": "next test --verbose a"
},
"dependencies": {
"@apollo/client": "^3.4.10",
"@carbon/icons-react": "^11.69.0",
"@carbon/react": "^1.93.0",
"buffer": "^6.0.3",
"carbon-react-code-mirror": "^0.2.0",
"chart.js": "^4.4.1",
"file-saver": "^2.0.5",
"graphql": "16.11.0",
"html-to-image": "^1.11.11",
"json-to-tf": "^0.3.1",
"jszip": "^3.10.1",
"lazy-z": "1.12.1",
"next": "^16.0.0",
"react": "^19.0.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.0",
"regex-but-with-words": "^1.5.0",
"sass": "1.93.3",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "20.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"husky": "9.1.7",
"lint-staged": "^16.0.0",
"postcss": "^8.4.38",
"prettier": "^3.0.0",
"wait-for-expect": "4.0.0"
},
"overrides": {
"react-scripts": {
"@svgr/webpack": "8.1.0",
"typescript": "5.0.2",
"postcss": "8.4.38"
}
},
"peerDependencies": {
"postcss": "^8.4.38"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"proxy": "http://localhost:8080"
}