-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"name": "zokrates-remix-plugin",
"author": "Darko Macesic <[email protected]>",
"version": "1.0.0",
"description": "Zokrates Compiler plugin for Remix IDE",
"scripts": {
"dev": "npx webpack serve --open --config webpack.dev.js",
"build": "npm install && rimraf dist && webpack build --config webpack.prod.js",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"tslint:fix": "tslint --fix src/**/*.{ts,js}"
},
"keywords": [
"zokrates",
"remix",
"ethereum",
"compiler",
"plugin"
],
"license": "ISC",
"dependencies": {
"@remixproject/plugin": "0.3.19",
"@remixproject/plugin-api": "^0.3.19",
"@remixproject/plugin-webview": "0.3.19",
"copy-to-clipboard": "^3.3.1",
"file-saver": "^2.0.5",
"jsonschema": "^1.4.0",
"jszip": "^3.7.1",
"react": "^16.14.0",
"react-bootstrap": "^1.6.1",
"react-dom": "^16.14.0",
"rxjs": "^6.6.7",
"zokrates-js": "^1.1.5"
},
"devDependencies": {
"@babel/core": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@types/react": "^16.14.14",
"@types/react-dom": "^16.9.14",
"babel-loader": "^8.2.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"css-loader": "^6.2.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.3.2",
"rimraf": "2.6.3",
"source-map-loader": "^3.0.0",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.5",
"tslint": "^6.1.3",
"typescript": "^4.4.2",
"webpack": "^5.51.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0",
"webpack-merge": "^5.8.0"
}
}