-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
94 lines (94 loc) · 3.33 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
{
"name": "pointnetwork-browser-extension",
"version": "0.1.3",
"description": "Point Browser Extension",
"alias": {
"pointsdk": "./src"
},
"targets": {
"dev": {
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"prod": {},
"sdk": {
"sourceMap": false,
"distDir": "browser",
"context": "browser",
"outputFormat": "global",
"optimize": true
}
},
"devDependencies": {
"@parcel/config-webextension": "^2.4.1",
"@parcel/runtime-browser-hmr": "^2.4.1",
"@parcel/transformer-image": "^2.4.1",
"@parcel/transformer-raw": "^2.4.1",
"@parcel/transformer-sass": "^2.4.1",
"@types/chrome": "^0.0.124",
"@types/firefox": "^0.0.30",
"@types/firefox-webext-browser": "^82.0.0",
"@types/geopattern": "^1.2.6",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^14.11.8",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/react-test-renderer": "^17.0.1",
"@types/uuid": "^8.3.4",
"@types/webextension-polyfill": "^0.8.3",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.2.0",
"events": "^3.3.0",
"jest": "^27.0.5",
"jest-css-modules": "^2.1.0",
"jest-webextension-mock": "^3.7.14",
"parcel": "^2.4.1",
"prettier": "^2.1.2",
"process": "^0.11.10",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4",
"util": "^0.12.4",
"webextension-polyfill-ts": "^0.25.0"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@ethersproject/bignumber": "^5.6.2",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/providers": "^5.6.8",
"@ethersproject/units": "^5.6.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.1",
"geopattern": "^1.2.3",
"jsonwebtoken": "^8.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.3.0",
"stream-browserify": "^3.0.0",
"sweetalert2": "^11.4.33",
"uuid": "^8.3.2",
"webextension-polyfill": "^0.7.0"
},
"scripts": {
"start": "npm run cleanup && parcel src/manifest.json --host localhost --target dev",
"build": "npm run cleanup && parcel build src/manifest.json --target prod --no-source-maps",
"watch": "npm run cleanup && parcel watch src/manifest.json --target prod",
"build:sdk": "npx [email protected] build src/pointsdk/browser.ts --target sdk",
"cleanup": "rm -rf dist .cache .parcel-cache",
"test": "jest --config=jest.config.js",
"lint": "eslint -c ./.eslintrc.js \"src/**/*.ts*\"",
"fix": "eslint --fix -c ./.eslintrc.js \"src/**/*.ts*\"",
"prettify": "prettier --write \"src/**/*.ts*\""
}
}