-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "git-map",
"version": "0.0.1",
"description": "frontend for the Git-Map project",
"main": "index.js",
"scripts": {
"prestart": "yarn",
"start": "webpack-dev-server --port 9990",
"build": "webpack -p",
"test-watch": "jest --watch",
"pretest": "npm run lint",
"test": "jest",
"prebuild": "npm test",
"predeploy": "rm -rf build && npm run build",
"deploy": "node publish",
"lint": "eslint src",
"fix-lint": "eslint --fix src"
},
"author": "extrategy",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "6.2.1",
"babel-plugin-transform-runtime": "6.8.0",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"css-loader": "0.25.0",
"eslint": "^3.11.1",
"eslint-plugin-react": "^6.7.1",
"file-loader": "0.9.0",
"gh-pages": "0.11.0",
"html-webpack-plugin": "^2.22.0",
"jasmine-core": "2.4.1",
"jest": "^17.0.3",
"json-loader": "0.5.4",
"node-sass": "^3.4.2",
"sass-loader": "4.0.2",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.12.11",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"axios": "0.11.0",
"d3": "^4.3.0",
"font-awesome": "4.6.3",
"gmaps": "^0.4.24",
"lodash": "4.11.1",
"react": "15.3.1",
"react-dom": "15.3.1",
"react-inline-grid": "^0.5.3",
"react-redux": "4.4.5",
"redux": "3.6.0",
"redux-little-router": "^12.0.0",
"redux-logger": "2.6.1",
"redux-saga": "0.10.2"
}
}