-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.73 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
{
"name": "map",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack-dev-server",
"lint": "esw webpack.config.* src/**/*.js --color",
"lint:watch": "npm run lint -- --watch",
"typecheck": "flow",
"typecheck:watch": "flow-watch",
"test": "mocha --reporter progress test/testSetup.js src/**/*.spec.js",
"test:watch": "npm run test -- --watch",
"check:lib": "npm-check"
},
"keywords": [],
"author": "trungutt",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.22.0",
"css-loader": "^0.26.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"eslint-watch": "^2.1.14",
"file-loader": "^0.10.0",
"flow-bin": "^0.38.0",
"flow-watch": "^1.1.0",
"npm-check": "^5.4.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"enzyme": "^2.7.1",
"jsdom": "^9.11.0",
"leaflet": "0.7.7",
"material-ui": "^0.16.7",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-leaflet": "0.12.3",
"react-redux": "^5.0.2",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-promise-middleware": "^4.2.0",
"styled-components": "^1.4.3"
}
}