-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.42 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "office-details",
"version": "0.0.0",
"description": "Company which has offices around the inform potencial customers about office locations and contact details",
"scripts": {
"start": "node server.js",
"lint": "eslint ./src",
"lint-staged": "lint-staged",
"flow": "./node_modules/.bin/flow",
"test": "cross-env NODE_ENV=test mocha --recursive --compilers js:babel-register",
"test:watch": "npm test -- --watch"
},
"pre-commit": [
"npm run lint-staged",
"npm run flow"
],
"lint-staged": {
"*.js": "eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/ogard/js-frontend-projects"
},
"author": "Drago Odalovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/ogard/js-frontend-projects"
},
"devDependencies": {
"anybar-webpack": "^1.2.0",
"autoprefixer": "^6.3.6",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-tcomb": "^0.3.24",
"babel-plugin-transform-react-jsx-self": "^6.22.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.18.0",
"chance": "^1.0.4",
"copy-webpack-plugin": "4.0.1",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"enzyme": "^2.7.0",
"eslint": "^3.10.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.18.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"flow-bin": "^0.53.0",
"html-webpack-plugin": "^2.22.0",
"image-webpack-loader": "^2.0.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"lint-staged": "^3.2.4",
"mocha": "^3.1.0",
"nodemon": "^1.9.1",
"node-libs-browser": "^1.0.0",
"npm-run-all": "^1.7.0",
"pre-commit": "^1.2.2",
"pre-git": "^3.10.0",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.4.1",
"react-hot-loader": "^3.0.0-beta.3",
"react-json-tree": "^0.10.0",
"react-test-renderer": ">=15.4.1 <15.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dashboard": "^0.1.6",
"webpack-dev-middleware": "^1.8.3",
"webpack-hot-middleware": "^2.12.2"
},
"dependencies": {
"bootstrap": "^3.3.6",
"classnames": "^2.2.5",
"express": "^4.14.0",
"lodash": "^4.14.1",
"log4js": "^0.6.37",
"material-ui": "^0.16.0",
"moment": "^2.14.1",
"rc-tabs": "^7.1.0",
"react": "^15.4.2",
"react-addons-shallow-compare": "^15.4.1",
"react-dom": "^15.4.2",
"react-google-maps": "^7.2.0",
"react-intl": "^2.1.3",
"react-loader": "^2.4.0",
"react-redux": "^4.4.5",
"react-tap-event-plugin": "^2.0.0",
"redux": "^3.6.0",
"redux-elmish": "^0.2.0",
"tcomb": "^3.2.13",
"tcomb-form": "^0.9.13",
"tcomb-form-templates-bootstrap": "^0.2.2",
"tcomb-validation": "^3.2.2"
},
"config": {
"pre-git": {
"pre-commit": [],
"pre-push": [
"npm run flow"
],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
},
"release": {
"analyzeCommits": "simple-commit-message"
}
}