forked from Courseography/courseography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "courseography",
"version": "0.2.0",
"repository": "[email protected]:Courseography/courseography.git",
"author": "David Liu <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"start": "stack exec courseography",
"test": "./node_modules/.bin/jest",
"prettier": "./node_modules/.bin/prettier --write ./js/components/graph/",
"eslint": "./node_modules/.bin/eslint --fix-dry-run ./js/components/graph"
},
"jest": {
"setupFiles": [
"<rootDir>/js/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/cypress/",
"<rootDir>/js/components/graph/__tests__/TestGraph.js",
"<rootDir>/js/components/graph/__tests__/cleanup-after-each.js"
],
"setupFilesAfterEnv": [
"<rootDir>/js/components/graph/__tests__/cleanup-after-each.js"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn run eslint"
}
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"handlebars": "^4.5.3",
"leaflet": "^1.5.1",
"lodash": "^4.17.19",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-leaflet": "^2.3.0",
"react-modal": "^3.5.1",
"stringstream": "^0.0.6",
"webpack": "^2.4.1",
"webpack-dev-server": "^3.1.11"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.5",
"babel-eslint": "10.0.1",
"babel-jest": "24.0.0",
"babel-loader": "^8.0.0",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.8.0",
"enzyme-to-json": "3.3.5",
"eslint": "5.12.1",
"eslint-config-prettier": "4.0.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"fetch-mock": "^7.3.1",
"husky": "1.3.1",
"jest": "24.0.0",
"node-fetch": "^2.6.1",
"precise-commits": "1.0.2",
"prettier": "1.16.1",
"prop-types": "15.6.2"
}
}