-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "GitStream",
"version": "1.0.0",
"description": "An interactive Git tutor",
"main": "dist/index.html",
"author": "Nick Hynes",
"license": "MIT",
"repository": "https://github.com/uid/gitstream",
"type": "commonjs",
"scripts": {
"test": "mocha test/**/*.mjs",
"sass": "node-sass src/client/scss/ -o dist/client",
"build-js": "node esbuild.config.js",
"esbuild": "esbuild --bundle src/client/js/main.js --outfile=dist/client/main.js",
"browserify": "browserify src/client/js/main.js --outfile=dist/client/main.js"
},
"browserify": {
"transform": [
"hbsfy"
]
},
"dependencies": {
"compression": "^1.7.4",
"cookie-session": "^2.0.0",
"diff": "^5.1.0",
"express": "^4.18.1",
"git-angler": "file:git-angler",
"git-http-backend": "file:git-http-backend",
"gitstream-exercises": "file:gitstream-exercises",
"glob": "^8.0.3",
"lodash": "^4.17.20",
"mongodb": "~4.10.0",
"mustache": "^4.1.0",
"node-uuid": "^1.4.8",
"openid-client": "^5.1.8",
"passport": "^0.7.0",
"q": "^1.5.1",
"rimraf": "^3.0.2",
"ws": "^8.14.2"
},
"devDependencies": {
"browserify": "^17.0.0",
"crypto-js": "^4.1.1",
"esbuild": "^0.19.5",
"esbuild-plugin-handlebars": "^1.0.2",
"event-emitter": "^0.3.5",
"handlebars": "^4.7.6",
"hbsfy": "^2.8.1",
"mocha": "^10.2.0",
"node-sass": "^9.0.0",
"normalize.css": "^8.0.1",
"sass": "^1.54.5",
"zeptojs": "^1.1.4"
}
}