-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.53 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
{
"name": "remix-optimism-compiler",
"version": "0.1.0",
"description": "Remix Optimism compiler",
"author": "MachinaLabs",
"dependencies": {
"@eth-optimism/solc": "^0.7.6-alpha.1",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"@remixproject/plugin": "^0.3.19",
"@remixproject/plugin-api": "^0.3.19",
"@remixproject/plugin-utils": "^0.3.19",
"@remixproject/plugin-webview": "^0.3.19",
"@types/styled-components": "^5.1.4",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-select-event": "^5.1.0",
"styled-components": "^5.2.1",
"workerize-loader": "^1.3.0"
},
"scripts": {
"start": "PORT=8080 react-scripts start",
"build": "CI=true react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:ci": "CI=true react-scripts test",
"tslint": "tslint -c tslint.json src/**/*.{ts,tsx} --fix --format verbose",
"tslint:fix": "tslint --fix -p . -c tslint.json",
"check-formatting": "prettier --write --list-different './src/**/*.tsx'",
"prettier": "prettier --write \"src/**/*.{ts,,tsx,js,json}\"",
"deploy": "yarn build && surge --project ./build --domain machinalabs-remix-optimism-compiler-plugin.surge.sh"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.4",
"@types/jest": "^26.0.13",
"@types/node": "^14.10.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"coveralls": "^3.1.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"surge": "^0.21.3",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^5.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-push": "yarn tslint && yarn check-formatting && yarn test:ci && yarn build"
}
}
}