-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 2.33 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
62
63
64
65
66
67
68
69
{
"name": "katangapp-front",
"version": "1.0.0-rc.3",
"config": {
"docker": {
"user": "swcraftersclm",
"image": "katanga-frontend"
}
},
"description": "this App can show you Toledo bus stops timing to all routes",
"license": "Apache 2",
"main": "app/app.jsx",
"scripts": {
"test": "./node_modules/.bin/jest",
"test-coverage": "./node_modules/.bin/jest --coverage",
"lint": "./node_modules/.bin/eslint --ext .js --ext .jsx src/ --fix --color",
"build": "npm install && ./node_modules/.bin/webpack --config ./webpack.config.js",
"build-docker": "docker build -t $npm_package_config_docker_user/$npm_package_config_docker_image:$npm_package_version . --no-cache",
"publish-docker": "docker push $npm_package_config_docker_user/$npm_package_config_docker_image:$npm_package_version",
"start": "./node_modules/.bin/webpack-dev-server --env.dev --config ./webpack.config.js"
},
"repository": "https://github.com/swcraftersclm/katangapp-frontend",
"keywords": [],
"author": "swcraftersclm",
"devDependencies": {
"copy-webpack-plugin": "^4.0.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^7.2.2",
"babel-jest": "^20.0.3",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"breakpoint-sass": "^2.6.1",
"create-react-class": "^15.6.0",
"css-loader": "0.26.2",
"enzyme": "^2.9.1",
"es6-promise": "^3.0.2",
"eslint": "4.3.0",
"eslint-config-prettier": "2.3.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-prettier": "2.1.2",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^2.0.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^20.0.4",
"node-sass": "^4.0.0",
"prettier": "1.5.3",
"promise-polyfill": "^5.2.1",
"prop-types": "^15.5.10",
"react": "^15.2.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.0.0",
"react-router-redux": "^4.0.0-rc.2",
"react-test-renderer": "^15.6.1",
"redux": "^3.3.1",
"redux-thunk": "^2.1.0",
"sass-loader": "6.0.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"whatwg-fetch": "^0.11.0"
}
}