-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.71 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
{
"name": "Seer",
"version": "0.0.0",
"scripts": {
"start": "node -r babel-register ./node_modules/.bin/webpack-dev-server --port 3000 --hot --config webpack/dev.js",
"standalone": "NODE_ENV=staging npm start",
"lint": "eslint src api/index.js webpack templates",
"test": "rm -rf api/dist && NODE_ENV=test ava",
"cover": "nyc --reporter html --reporter text npm test",
"report": "nyc report --reporter text-lcov | coveralls",
"api": "(cd api && npm run build && npm run docs)",
"copy": "cp templates/{entry,manifest,128}.* dist && cp src/bridge/{background,content-script}.js dist && zip -r dist.zip dist",
"build": "rm -rf dist* && NODE_ENV=production webpack --progress --hide-modules --config webpack/build.babel.js && npm run copy"
},
"dependencies": {
"classnames": "^2.2.5",
"global": "^4.3.2",
"hint.css": "^2.5.0",
"lodash": "^4.17.4",
"object-path-immutable": "^0.5.1",
"prettier": "^1.7.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-icons": "^2.2.5",
"react-json-tree-zavatta": "^0.1.4",
"react-redux": "^5.0.5",
"redux": "^3.7.1",
"redux-actions": "^2.0.3",
"redux-thunk": "^2.2.0",
"serialize-javascript": "^1.3.0",
"styled-components": "^2.2.4"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"ava": "^0.20.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"coveralls": "^2.13.1",
"deck.gl": "^4.1.0-alpha.7",
"enzyme": "^2.9.1",
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.6.0",
"eslint-config-zavatta": "^6.0.0",
"eslint-config-zavatta-react": "^2.2.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.29.0",
"jsdom": "^11.0.0",
"jsdom-global": "^3.0.2",
"luma.gl": "^4.0.0-alpha.5",
"node-sass": "^4.5.3",
"nyc": "^11.0.3",
"react-addons-test-utils": "^15.6.0",
"react-map-gl": "beta",
"sinon": "^2.3.6",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0",
"webpack-stats-plugin": "^0.1.5"
},
"ava": {
"require": [
"babel-register",
"jsdom-global/register"
],
"babel": "inherit"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"author": "Balthazar Gronon <bgronon@gmail.com>",
"license": "MIT",
"private": true
}