-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.08 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
{
"name": "transientbug-browser-extension",
"version": "2.1.0",
"private": true,
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"@types/debug": "^4.1.4",
"@types/jest": "24.0.13",
"@types/lodash": "^4.14.134",
"@types/node": "12.0.7",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"@types/react-select": "^3.0.0",
"debug": "^4.1.1",
"emotion": "^10.0.9",
"immer": "^3.1.2",
"lodash": "^4.17.11",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-select": "^3.0.4",
"tailwind.macro": "^1.0.0-alpha.10",
"tailwindcss": "^1.0.3",
"typescript": "3.5.1",
"use-immer": "^0.3.2",
"web-ext-types": "^3.1.0",
"webextension-polyfill": "^0.4.0"
},
"scripts": {
"prestart": "tailwind build ./src/index.tailwind.css -c ./tailwind.config.js -o ./src/index.css",
"start": "react-scripts start",
"prebuild": "tailwind build ./src/index.tailwind.css -c ./tailwind.config.js -o ./src/index.css",
"build": "INLINE_RUNTIME_CHUNK=false react-scripts build",
"test": "react-scripts test",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"lint:addon": "addon-linter build --self-hosted",
"package": "yarn build && yarn web-ext build --source-dir build --overwrite-dest"
},
"eslintConfig": {
"extends": "react-app",
"env": {
"browser": true,
"webextensions": true
},
"globals": {
"browser": true
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@dump247/storybook-state": "^1.6.0",
"@storybook/addon-actions": "^5.1.3",
"@storybook/addon-console": "^1.1.0",
"@storybook/addon-links": "^5.1.3",
"@storybook/addons": "^5.1.3",
"@storybook/react": "^5.1.3",
"web-ext": "^3.1.0",
"addons-linter": "^1.10.1",
"react-scripts": "3.0.1"
}
}