-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.3 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.3 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
{
"name": "timetrack",
"version": "0.1.0",
"private": true,
"dependencies": {
"create-react-class": "^15.5.2",
"date-fns": "^1.28.4",
"history": "^4.6.1",
"immutability-helper": "^2.2.0",
"office-ui-fabric-react": "^2.24.2",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-apollo": "^1.1.3",
"react-cookie": "^1.0.4",
"react-dom": "^15.5.4",
"react-input-autosize": "^1.1.0",
"react-router-dom": "^4.1.1",
"react-select": "^1.0.0-rc.3"
},
"devDependencies": {
"react-scripts": "1.1.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"postbuild": "npm run delete-maps",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"analyzer": "NODE_ENV=production webpack --config=./node_modules/react-scripts/config/webpack.config.prod.js --json | webpack-bundle-size-analyzer",
"explore": "source-map-explorer ./build/static/js/main.*.js",
"delete-maps": "npm run delete-map-files && npm 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' {} +"
}
}