-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.75 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
{
"name": "my-app",
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "webpack serve --config webpack.dev.config.cjs",
"lint": "eslint --ext .js,.ts .",
"test": "node --experimental-vm-modules $(yarn bin jest)",
"runningProcesses": "sudo lsof -i :4040",
"convertPowersOfBeta": "ts-node --project ts-config-utility.json ./src/test-data/convert-binary-to-big-ints.ts",
"convertXsToPoints": "ts-node --project ts-config-utility.json ./src/test-data/convert-x-to-points.ts",
"generatePointsTestFile": "ts-node --project ts-config-utility.json ./src/test-data/createRandomAffinePoints.ts"
},
"dependencies": {
"@headlessui/react": "^1.7.16",
"@heroicons/react": "^2.0.18",
"@noble/curves": "1.0.0",
"@types/node": "^20.4.9",
"@webgpu/types": "^0.1.30",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"html-webpack-plugin": "^5.5.0",
"path-browserify": "^1.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"save-dev": "0.0.1-security",
"stream-browserify": "^3.0.0",
"threads": "^1.7.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.2",
"@types/bn.js": "^5.1.1",
"@types/jest": "^29.5.0",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.11.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^2.4.1",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"jest": "^29.5.0",
"jest-environment-puppeteer": "^8.0.6",
"jest-puppeteer": "^8.0.6",
"postcss": "^8.4.23",
"postcss-loader": "^7.3.0",
"postcss-preset-env": "^8.3.2",
"postcss-scss": "^4.0.6",
"process": "^0.11.10",
"puppeteer": "^19.9.0",
"style-loader": "^3.3.2",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}