forked from Courseography/courseography
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.47 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.47 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "courseography",
"version": "0.3.0",
"repository": "git@github.com:Courseography/courseography.git",
"author": "David Liu <david@cs.toronto.edu>",
"license": "GPL-3.0",
"scripts": {
"start": "stack exec courseography",
"watch": "webpack --watch",
"test": "jest",
"prettier": "prettier ./js/components/graph/*.js",
"eslint": "eslint --fix-dry-run ./js/components/graph",
"postinstall": "husky install"
},
"private": true,
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"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__/TestSidebar.js",
"<rootDir>/js/components/graph/__tests__/TestContainer.js",
"<rootDir>/js/components/graph/__tests__/TestFocusBar.js",
"<rootDir>/js/components/graph/__tests__/cleanup-after-each.js"
],
"setupFilesAfterEnv": [
"<rootDir>/js/components/graph/__tests__/cleanup-after-each.js"
]
},
"dependencies": {
"core-js": "^3.11.0",
"handlebars": "^4.7.7",
"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",
"regenerator-runtime": "^0.13.7",
"stringstream": "^0.0.6",
"webpack": "^5.36.0"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@testing-library/react": "^12.0.0",
"babel-eslint": "10.0.1",
"babel-jest": "26.6.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.4",
"cypress": "3.4.1",
"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": "^6.0.0",
"jest": "26.6.3",
"mini-css-extract-plugin": "^1.5.1",
"node-fetch": "^2.6.1",
"precise-commits": "1.0.2",
"prettier": "1.17",
"prop-types": "15.6.2",
"sass": "^1.32.11",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.1.11"
}
}