-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.92 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
{
"name": "zk-browser",
"version": "1.0.0",
"description": "",
"main": "./client/index.tsx",
"scripts": {
"build": "$(npm bin)/webpack --mode development ",
"server": "node ./server/app.js",
"babel": "babel --presets es2015 client/index.js -o ./lib/index.js",
"client": "$(npm bin)/webpack --mode development --watch",
"dev": "$(npm bin)/concurrently \"npm run client\" \"npm run server\"",
"compile": "node ./circuits/builder.js circuits-compiled keys true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nulven/zk-browser.git"
},
"author": "Nick Ulven",
"license": "MIT",
"bugs": {
"url": "https://github.com/nulven/zk-browser/issues"
},
"homepage": "https://github.com/nulven/zk-browser#readme",
"dependencies": {
"@babel/preset-react": "^7.10.1",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-modal": "^3.10.5",
"@types/react-router-dom": "^5.1.5",
"big-integer": "^1.6.48",
"circom": "^0.5.35",
"circomlib": "^0.4.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"dotenv": "^8.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^5.1.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"express": "^4.17.1",
"extract-loader": "^5.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"rc-align": "^2.3.5",
"rc-slider": "^9.3.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "5.0.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"snarkjs": "^0.3.51",
"source-map-loader": "^0.2.4",
"styled-components": "^5.1.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"typescript-eslint-parser": "^22.0.0",
"typescript-plugin-styled-components": "^1.4.4",
"web3-utils": "^1.3.1",
"webpack-dev-middleware": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/preset-env": "^7.10.4",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/runtime": "^7.10.2",
"@types/styled-components": "^5.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^5.2.0",
"css-loader": "^3.6.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}