forked from coursegraph/CourseGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.43 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
{
"name": "coursegraph",
"version": "1.0.0",
"description": "The course search software offered by UCSC (and most colleges) kind of sucks, and there is no easy way to explore classes and majors without a counselor – and the counselors could probably use some help too!",
"main": "index.js",
"scripts": {
"pretest": "tslint -c tslint.json -p tsconfig.json 'src/**/*.tsx'",
"test": "jest",
"build": "webpack",
"docs": "typedoc --out ./doc/ --theme minimal src/index.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SeijiEmery/CourseGraph.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/SeijiEmery/CourseGraph/issues"
},
"homepage": "https://github.com/SeijiEmery/CourseGraph#readme",
"dependencies": {
"@types/react": "^16.4.4",
"@types/react-dom": "^16.0.6",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"@types/enzyme": "^3.1.11",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^23.1.3",
"awesome-typescript-loader": "^5.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^23.2.0",
"source-map-loader": "^0.2.3",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-react": "^3.6.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.2",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8"
}
}