-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "ballot-analyzer",
"version": "0.0.1",
"main": "index.js",
"repository": "git@github.com:benhiller/ballot-analyzer.git",
"author": "bhiller <benhiller@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"import-data": "node scripts/import_data.js",
"generate-district-precinct-mapping": "node scripts/generate_district_precinct_portion_map.js"
},
"dependencies": {
"@next/bundle-analyzer": "^9.5.5",
"classnames": "^2.2.6",
"dotenv": "^8.2.0",
"downshift": "^6.0.6",
"knex": "^0.21.6",
"knex-on-conflict-do-nothing": "^1.0.0",
"lodash.deburr": "^4.1.0",
"memjs": "^1.2.2",
"next": "^10.0.0",
"pg": "^8.4.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-tooltip-lite": "^1.12.0",
"swr": "^0.3.8"
},
"devDependencies": {
"JSONStream": "^1.3.5",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.0.1",
"event-stream": "^4.0.1",
"prettier": "^2.1.2"
},
"resolutions": {
"object-path": "^0.11.5"
}
}