forked from 18F/analytics.usa.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "analytics.usa.gov",
"version": "2.0.0",
"description": "dashboard of analytics",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build-prod": "webpack",
"build-dev": "webpack --mode=development --watch=true",
"test": "mocha --require @babel/register spec",
"lint": "./node_modules/.bin/eslint js --ignore-pattern '/js/vendor/*'",
"lint:fix": "./node_modules/.bin/eslint ./js/index.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/analytics.usa.gov.git"
},
"author": "",
"license": "SEE LICENSE IN License.md",
"bugs": {
"url": "https://github.com/18F/analytics.usa.gov/issues"
},
"homepage": "https://github.com/18F/analytics.usa.gov#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"mocha": "^5.2.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"d3": "^3.5.17",
"q": "^1.5.1"
}
}