-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.26 KB
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
{
"name": "sss_extension",
"version": "2.2.3",
"private": true,
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@ledgerhq/hw-transport-webhid": "6.27.1",
"@mui/icons-material": "^5.4.4",
"@mui/material": "^5.3.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/crypto-js": "^4.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/w3c-web-hid": "^1.0.3",
"boring-avatars": "^1.7.0",
"crypto-js": "^4.1.1",
"i18next": "^21.6.14",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.6",
"react-icons": "^4.3.1",
"react-scripts": "4.0.3",
"recoil": "^0.7.5",
"rxjs": "^7.5.2",
"symbol-hd-wallets": "^0.14.2",
"symbol-ledger-typescript": "^0.0.1-alpha-202106071548",
"symbol-node-util": "^2.0.1",
"symbol-qr-library": "^0.14.2",
"symbol-sdk": "^2.0.4",
"symbol-uri-scheme": "^0.6.1",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "rm -rf build && yarn build:react && yarn build:content_scripts && yarn build:background_scripts && yarn build:inject_scripts && yarn move",
"build:react": "yarn build:popup && yarn build:options",
"build:popup": "GENERATE_SOURCEMAP=false WEBPACK_ENV=production REACT_APP_TARGET=popup BUILD_PATH=popup react-scripts build",
"build:options": "GENERATE_SOURCEMAP=false WEBPACK_ENV=production REACT_APP_TARGET=options BUILD_PATH=options react-scripts build",
"build:content_scripts": "webpack --config webpack.content_scripts.config.ts",
"build:background_scripts": "webpack --config webpack.background_scripts.config.ts",
"build:inject_scripts": "webpack --config webpack.inject_scripts.config.ts",
"move": "yarn move:popup && yarn move:options && cp public/* build/",
"move:popup": "sed -e 's|/static|./static|g' popup/index.html > popup/popup.html && mv -f popup build/",
"move:options": "sed -e 's|/static|./static|g' options/index.html > options/options.html && mv -f options build/",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.4.14",
"@storybook/addon-essentials": "^6.4.14",
"@storybook/addon-links": "^6.4.14",
"@storybook/node-logger": "^6.4.14",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.4.14",
"@types/chrome": "^0.0.177",
"ts-loader": "^8.2.0",
"ts-node": "^10.4.0",
"webpack-cli": "^4.9.1"
}
}