-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.3 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.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
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
{
"name": "kville-scheduler",
"private": true,
"dependencies": {
"@rails/webpacker": "3.5",
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.0.5",
"history": "^4.7.2",
"husky": "^3.1.0",
"moment": "^2.22.2",
"prop-types": "^15.6.1",
"query-string": "^6.2.0",
"randomstring": "^1.1.5",
"react": "^16.3.2",
"react-big-calendar": "^0.20.2",
"react-count-down": "^1.1.0",
"react-dom": "^16.3.2",
"react-forecast": "git+https://github.com/mafuvadze/react-forecast.git",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"react-timeago": "^4.1.9",
"react-twitter-widgets": "^1.7.1",
"react-youtube": "^7.6.0",
"redux": "^3.7.2",
"redux-auth-wrapper": "^2.0.2",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"redux-persist": "^5.6.6",
"redux-search": "^2.4.0",
"redux-thunk": "^2.2.0",
"semantic-ui-calendar-react": "^0.12.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.81.2"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-stage-0": "^6.24.1",
"webpack-dev-server": "2.11.2"
},
"scripts": {
"start": "foreman start -f Procfile.dev",
"setup": "./bin/setup.sh",
"prod": "foreman start -f Procfile.prod",
"clean:branch": "./bin/clean-branch.sh",
"webpacker": "ruby bin/webpack-dev-server",
"flush": " docker-compose run app ./bin/db-flush.sh",
"dev:setup": "./bin/dev.sh",
"dev:start": "docker-compose run -p '5000:5000' -p '3035:3035' app yarn start",
"dev:bash": "docker-compose run app bash",
"dev:console": "docker-compose run app rails c",
"dev:db": "docker-compose run app rails db",
"dev:db:migrate": "docker-compose run app rails db:migrate",
"dev:db:seed": "docker-compose run app rails db:seed",
"prod:start": "./bin/prod-start.sh",
"prod:build": "./bin/build-production.sh",
"staging:build": "./bin/build-staging.sh",
"dev:clean-start": "./bin/clean-start-server.sh"
}
}