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
90 lines (90 loc) · 2.63 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.63 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
86
87
88
89
90
{
"name": "courseography",
"version": "0.4.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 --write .",
"eslint": "eslint --fix-dry-run --ignore-path .prettierignore js"
},
"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"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"core-js": "^3.11.0",
"handlebars": "^4.7.7",
"jquery": "^3.6.0",
"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/eslint-parser": "^7.15.0",
"@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-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": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"fetch-mock": "^7.3.1",
"jest": "26.6.3",
"mini-css-extract-plugin": "^1.5.1",
"node-fetch": "^2.6.1",
"precise-commits": "1.0.2",
"prettier": "^2.3.2",
"prop-types": "15.6.2",
"sass": "^1.32.11",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.1.11"
}
}