-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 1.37 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
{
"name": "extension",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-brands": "^5.0.13",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/fontawesome-svg-core": "^1.2.12",
"@fortawesome/free-solid-svg-icons": "^5.6.3",
"@fortawesome/react-fontawesome": "^0.1.4",
"antd": "^3.6.1",
"axios": "^0.18.0",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"rc-progress": "^2.2.5",
"rc-switch": "^1.9.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-ga": "^2.5.3",
"react-redux": "^5.0.7",
"react-scripts": "1.1.4",
"react-switch": "^3.0.4",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"trianglify": "^1.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && yarn run delete-maps",
"delete-maps": "yarn run delete-map-files && yarn run delete-references-to-map-files",
"delete-map-files": "find ./build -name '*.map' -delete",
"delete-references-to-map-files": "find ./build -regex '.*\\.\\(js\\|css\\)' -exec sed -i -E '\\/[\\*\\/]#\\ssourceMappingURL=main(\\.[0-9a-f]+)?\\.(css|js)\\.map(\\*\\/)?/g' {} +",
"postbuild": "rm eternity.zip && zip -r eternity.zip ./build/*",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}