This repository has been archived by the owner on Jul 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.42 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": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "webpack-dev-server",
"start-local": "webpack-dev-server",
"build": "webpack",
"lint": "prettier .",
"build:worker": "webpack --config webpack.worker.js",
"postinstall": "link-module-alias && yarn copyCircuits",
"copyCircuits": "cp ./node_modules/@unirep/circuits/build/* ./public/build",
"test": "jest --config ./jest.config.js",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"_moduleAliases": {
"worker_threads": "./externals/worker_threads.js"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@unirep/circuits": "git+https://github.com/Unirep/circuits.git#alpha",
"@unirep/crypto": "git+https://github.com/Unirep/crypto.git",
"@unirep/unirep": "git+https://github.com/Unirep/unirep.git#alpha",
"@unirep/unirep-social": "git+https://github.com/Unirep/unirep-social.git#alpha",
"babel-preset-env": "^1.7.0",
"bootstrap": "^5.0.2",
"dateformat": "^4.5.1",
"ethers": "^5.5.4",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^28.1.2",
"keyv": "4.1.1",
"markdown-it": "^12.3.2",
"mobx": "^6.4.2",
"mobx-react-lite": "^3.3.0",
"n-readlines": "^1.0.1",
"nanoid": "^4.0.0",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-circular-progressbar": "^2.0.4",
"react-dom": "^17.0.2",
"react-favicon": "^1.0.0",
"react-icons": "^4.2.0",
"react-jdenticon": "^0.0.9",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^2.4.3",
"snarkjs": "^0.3.59",
"ts-jest": "^28.0.5"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@cloudflare/kv-asset-handler": "^0.2.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.4",
"@types/keyv": "^3.1.2",
"@types/markdown-it": "^12.2.3",
"@types/n-readlines": "^1.0.2",
"@types/react-router-dom": "^5.1.8",
"@types/shelljs": "^0.8.9",
"assert": "^2.0.0",
"babel-jest": "^28.1.2",
"babel-loader": "^8.2.3",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.2",
"jest-axe": "^6.0.0",
"link-module-alias": "^1.2.0",
"mini-css-extract-plugin": "^2.6.0",
"os-browserify": "^0.3.0",
"prettier": "^2.6.0",
"react-test-renderer": "^18.2.0",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.2.8",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"semi": false
}
}