-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
127 lines (127 loc) · 4.31 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "ext-template",
"version": "1.0.0",
"description": "Chrome Extension boilerplate",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"dev": "NODE_ENV=development webpack -w --config webpack.dev.js",
"serve": "./scripts/serve.sh",
"merkle": "node scripts/mock-merkle-proof.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"commit": "cz",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com"
},
"keywords": [
"react",
"typescript",
"chrome",
"extension",
"boilerplate"
],
"author": "0xTsukino",
"license": "MIT",
"bugs": {
"url": "https://github.com"
},
"homepage": "https://github.com",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/chrome": "^0.0.124",
"@types/eventemitter2": "^4.1.0",
"@types/jest": "^27.0.3",
"@types/node": "^14.11.8",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.7",
"@types/redux-logger": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^4.4.1",
"assert": "^2.0.0",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-jest": "^26.5.2",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.4",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"http-server": "^14.0.0",
"image-webpack-loader": "^7.0.1",
"lint-staged": "^12.1.2",
"npm-force-resolutions": "0.0.10",
"path-browserify": "^1.0.1",
"prettier": "^2.5.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"sass-loader": "^10.0.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.5",
"typescript": "^4.5.0",
"webpack": "^5.52.0",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@dimensiondev/metamask-extension-provider": "https://github.com/DimensionDev/extension-provider/tarball/master",
"@interrep/identity": "^0.10.0",
"@types/classnames": "^2.2.11",
"@zk-kit/identity": "^1.2.0",
"@zk-kit/protocols": "^1.2.4",
"axios": "^0.24.0",
"bigint-conversion": "^2.1.12",
"browserify": "^17.0.0",
"circomlibjs": "^0.0.8",
"classnames": "^2.2.6",
"crypto-js": "^4.1.1",
"eventemitter2": "^6.4.4",
"extensionizer": "^1.0.1",
"fast-deep-equal": "^3.1.3",
"ffjavascript": "0.2.39",
"node-sass": "^6.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-jazzicon": "^0.1.3",
"react-redux": "^7.2.3",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"web3": "^1.5.3",
"webextension-polyfill-ts": "^0.20.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}