forked from hackoregon/civic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.56 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
{
"name": "@hackoregon/civic",
"description": "Civic is an open source project of Hack Oregon, built entirely by volunteers committed to neutral, nonpartisan exploration of civic analytics.",
"author": "Hack Oregon",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hackoregon/civic"
},
"keywords": [
"react",
"react-router",
"webpack",
"redux",
"boilerplate",
"monorepo",
"lerna",
"hackoregon"
],
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"bootstrap": "yarn install --frozen-lockfile && lerna bootstrap",
"build": "lerna run build",
"configure": "lerna run configure",
"tag": "lerna publish --skip-npm",
"canary": "lerna publish --skip-git --skip-npm --canary",
"clean": "lerna clean && rimraf node_modules",
"watch": "node scripts/watch",
"deploy-storybook": "BABEL_ENV=esm storybook-to-ghpages",
"in": "lerna run --scope",
"link:all": "lerna link",
"lint": "lerna run lint -- --fix",
"storybook": "BABEL_ENV=esm start-storybook -p 6006",
"test": "lerna run test",
"travis": "make travis"
},
"devDependencies": {
"@storybook/addon-a11y": "^3.4.3",
"@storybook/addon-actions": "^3.4.2",
"@storybook/addon-info": "^3.4.2",
"@storybook/addon-knobs": "^3.4.2",
"@storybook/addon-links": "^3.4.2",
"@storybook/addon-notes": "^3.4.2",
"@storybook/react": "^3.4.2",
"@storybook/storybook-deployer": "^2.3.0",
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.1",
"babili-webpack-plugin": "0.0.10",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-enzyme": "^0.6.1",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"clean-webpack-plugin": "^0.1.15",
"colors": "^1.1.2",
"coveralls": "^2.11.15",
"css-loader": "^0.28.0",
"enzyme": "^2.7.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^6.10.0",
"eslint-watch": "^2.1.14",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.4",
"jest": "^20.0.4",
"jsdom": "^9.8.3",
"jsdom-global": "^2.1.0",
"json-loader": "^0.5.4",
"lerna": "^2.5.1",
"lodash-webpack-plugin": "^0.11.2",
"mocha": "^3.2.0",
"mocha-clean": "^1.0.0",
"mochawesome": "^1.5.1",
"nock": "^9.0.2",
"node-notifier": "^5.0.2",
"npm-run-all": "^4.0.2",
"postcss-loader": "^1.3.3",
"prop-types": "^15.5.3",
"react-addons-test-utils": "^15.5.3",
"react-hot-loader": "^3.0.0-beta.7",
"react-transform-hmr": "^1.0.4",
"redux-immutable-state-invariant": "^1.2.4",
"redux-mock-store": "^1.2.1",
"regenerator-runtime": "^0.10.1",
"rimraf": "^2.6.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.7",
"version-bump-prompt": "^3.1.0",
"watch": "^1.0.2",
"webpack": "^2.7.0",
"webpack-bundle-analyzer": "^2.1.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-dev-server": "^2.4.1",
"webpack-hot-middleware": "^2.17.0",
"webpack-md5-hash": "^0.0.5",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"@hackoregon/civic-server": "0.0.10",
"d3-request": "^1.0.6",
"deck.gl": "^5.2.4"
}
}