-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.91 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.91 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
{
"name": "docket-ui",
"version": "1.0.0",
"description": "React UI for DC Court Scraper tool",
"main": "dist/bundle.js",
"scripts": {
"build": "rollup --config",
"build:watch": "rollup --config -w",
"dev": "npm run build:watch",
"lint": "eslint src",
"generateFlowTypes": "flow-typed install",
"prepublish": "npm run build",
"test:server": "node test/server.js"
},
"dependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/polyfill": "7.4.4",
"@babel/runtime": "7.5.5",
"@material-ui/core": "4.4.2",
"@material-ui/icons": "4.4.1",
"clsx": "1.0.4",
"react": "16.9.0",
"react-dom": "16.9.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/plugin-proposal-export-namespace-from": "7.5.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-async-to-generator": "7.5.0",
"@babel/plugin-transform-react-jsx": "7.3.0",
"@babel/plugin-transform-regenerator": "7.4.5",
"@babel/plugin-transform-runtime": "7.5.5",
"@babel/preset-env": "7.4.5",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-plugin-flow-vars": "0.5.0",
"eslint-plugin-flowtype": "3.9.1",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-react": "7.14.3",
"express": "4.17.1",
"express-http-proxy": "1.5.1",
"flow-bin": "0.100.0",
"flow-typed": "2.6.0",
"nodemon": "1.19.1",
"prettier": "1.17.1",
"rollup": "1.14.3",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.2",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.0.0",
"rollup-plugin-uglify": "6.0.3"
},
"author": "elsoybean"
}