-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
61 lines (61 loc) · 1.93 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
{
"name": "react-time-tracking",
"homepage": "https://vivid-trace.firebaseapp.com",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"@kadira/storybook-addons": "^1.6.1",
"@kadira/storybook-channel": "^1.1.0",
"@kadira/storybook-deployer": "^1.2.0",
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react-app": "^2.1.0",
"enzyme": "^2.7.0",
"gh-pages": "^0.12.0",
"moment-timezone": "^0.5.11",
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.1",
"react-addons-test-utils": "^15.4.2",
"react-scripts": "0.8.5",
"redux-devtools-extension": "^2.13.0",
"redux-mock-store": "^1.2.2",
"storyshots": "^3.2.2",
"timezoned-date": "^2.0.19"
},
"dependencies": {
"chart.js": "^2.5.0",
"firebase": "^3.6.8",
"flexboxgrid": "^6.3.1",
"formsy-material-ui": "^0.5.3",
"formsy-react": "^0.18.1",
"history": "^3.2.1",
"lodash": "^4.17.4",
"material-ui": "^0.16.7",
"moment": "^2.17.1",
"moment-duration-format": "^1.3.0",
"react": "^15.4.2",
"react-chartjs-2": "^2.0.0",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.1",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"reselect": "^2.5.4"
},
"scripts": {
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "npm run build-css && react-scripts test --runInBand --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build-css": "node-sass src/ -o src/",
"watch-css": "npm run build-css && node-sass src/ -o src/ --watch",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"deploy-storybook": "storybook-to-ghpages"
}
}