-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.81 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "city-matcher",
"version": "1.0.0",
"description": "City Matcher Kununu Frontend Test",
"main": "index.js",
"repository": "https://github.com/priscilawebdev/city-matcher.git",
"author": "Priscila Oliveira <[email protected]>",
"license": "UNLICENSED",
"keywords": [
"javascript",
"react",
"redux"
],
"engines": {
"node": ">=8.1.4",
"yarn": ">=0.24.5"
},
"dependencies": {
"axios": "0.16.2",
"babel-polyfill": "^6.26.0",
"bootstrap-sass": "3.3.7",
"colors": "^1.1.2",
"cors": "2.7.1",
"domready": "^1.0.8",
"express": "4.15.2",
"intl": "^1.2.5",
"lodash": "^4.17.4",
"material-ui": "^0.19.1",
"object-hash": "^1.1.8",
"open": "^0.0.5",
"prop-types": "15.5.10",
"react": "^15.6.1",
"react-bem-helper": "^1.4.1",
"react-dom": "^15.6.1",
"react-intl": "^2.4.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "5.0.0-alpha.6",
"react-tap-event-plugin": "^2.0.1",
"react-waypoint": "^7.1.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.2",
"sanitize.css": "^5.0.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-styled-components": "^1.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "6.16.0",
"circular-dependency-plugin": "^4.2.0",
"compression-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "0.25.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.0.1",
"eslint-watch": "^3.1.2",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.2",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.1",
"sass-loader": "^6.0.6",
"style-loader": "0.16.1",
"webpack": "^3.8.1",
"webpack-dev-server": "2.4.2",
"webpack-hot-middleware": "^2.20.0"
},
"scripts": {
"prestart": "babel-node tools/startMessage.js",
"start": "npm run dev && npm-run-all --parallel open:src lint:watch",
"open:src": "babel-node tools/srcServer.js",
"dev": "webpack --config webpack.config.dev.js",
"lint": "eslint ./src",
"lint:watch": "esw --watch ./src",
"clean": "rimraf ./dist/*",
"prebuild": "npm-run-all clean lint",
"build": "babel-node ./tools/build.js",
"postbuild": "babel-node ./tools/distServer.js",
"postinstall": "npm run clean && node ./tools/build.js",
"herokustart": "node ./tools/distServer.js"
}
}