-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.53 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.53 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
{
"name": "run-utils",
"version": "0.1.0",
"private": true,
"homepage": "http://run-utils.surge.sh",
"devDependencies": {
"@storybook/addon-knobs": "^3.1.8",
"@storybook/react": "^3.1.8",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"d3-color": "^1.0.3",
"d3-interpolate": "^1.1.5",
"d3-scale": "^1.0.6",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"minimist": "^1.2.0",
"node-sass": "^4.5.2",
"npm-run-all": "^4.0.2",
"pegjs": "^0.10.0",
"react-addons-test-utils": "^15.5.1",
"react-scripts": "0.9.0",
"react-test-renderer": "^15.5.4",
"sinon": "^2.1.0"
},
"dependencies": {
"bootstrap-grid": "^2.0.1",
"c3": "^0.4.13",
"classnames": "^2.2.5",
"d3": "^4.9.1",
"d3-interpolate": "^1.1.5",
"d3-scale": "^1.0.6",
"d3-time": "^1.0.7",
"firebase": "^4.1.1",
"jss-theme-reactor": "^0.10.0",
"lodash.debounce": "^4.0.8",
"material-ui": "^0.17.3",
"muicss": "^0.9.15",
"prop-types": "^15.5.10",
"query-string": "^4.3.4",
"ramda": "^0.23.0",
"rc-slider": "^6.1.2",
"rc-time-picker": "^2.2.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.4",
"react-ripple-effect": "^1.0.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"react-tap-event-plugin": "^2.0.1",
"recompose": "^0.23.4",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.0",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.2.0",
"shortid": "^2.2.8",
"strava-v3": "^1.14.0",
"timeseries-analysis": "^1.0.12"
},
"scripts": {
"build-css": "node-sass src/ -o src/",
"watch-css": "npm run build-css && node-sass src/ -o src/ --watch --recursive",
"generate-parser": "pegjs -o src/modules/core/services/workoutParser.js src/modules/core/services/workoutGrammar.pegjs",
"start-js": "react-scripts start",
"start": "npm run generate-parser && npm-run-all -p watch-css start-js",
"build": "npm run generate-parser && npm run build-css && react-scripts build",
"deploy": "npm run build && node scripts/rename-file build/index.html build/200.html && surge ./build https://run-utils.surge.sh",
"test": "npm run generate-parser && react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"storybook-js": "start-storybook -p 9001 -c .storybook",
"storybook": "npm-run-all -p watch-css storybook-js"
}
}