-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
81 lines (81 loc) · 2.41 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
{
"name": "cliff-effects",
"version": "0.1.0",
"private": true,
"dependencies": {
"ajv": "6.5.4",
"chart.js": "2.7.2",
"cross-env": "^5.2.0",
"highcharts": "^6.2.0",
"localforage": "^1.7.3",
"lodash": "4.17.10",
"moment": "2.22.1",
"react": "16.3.2",
"react-chartjs-2": "2.7.2",
"react-dom": "16.3.2",
"react-helmet": "5.2.0",
"react-jsx-highcharts": "^3.3.1-alpha.1",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"react-scripts": "1.1.5",
"react-select": "2.1.1",
"semantic-ui-css": "2.2.12",
"semantic-ui-react": "0.75.1"
},
"scripts": {
"start": "cross-env NODE_ENV=development; react-scripts start",
"build": "npm run docs && react-scripts build && node postbuild.js",
"test": "react-scripts test",
"coverage": "react-scripts test --coverage",
"eject": "react-scripts eject",
"deploy": "npm run build && gh-pages -d build",
"generateSNAPTests": "./node_modules/.bin/babel-node src/test/programs/federal/snap/generateTestCases",
"lint": "npm run check-node-version; ./node_modules/.bin/eslint src --fix",
"docs": "./node_modules/.bin/jsdoc src -R OVERVIEW.md -r -c jsdoc.json -d docs",
"preinstall": "npm run check-node-version",
"check-node-version": "node ./check-node-version.js"
},
"homepage": "https://codeforboston.github.io/cliff-effects/app",
"husky": {
"hooks": {
"pre-commit": "npm run check-node-version; lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"codecov": "3.0.4",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.3",
"eslint": "4.19.1",
"eslint-plugin-babel": "5.1.0",
"eslint-plugin-jest": "21.15.1",
"fs-extra": "7.0.0",
"gh-pages": "1.2.0",
"husky": "^1.1.2",
"jsdoc": "3.5.5",
"lint-staged": "^8.0.4",
"react-test-renderer": "16.3.2"
},
"description": "This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/codeforboston/cliff-effects.git"
},
"author": "Code for Boston",
"license": "ISC",
"bugs": {
"url": "https://github.com/codeforboston/cliff-effects/issues"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}