-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 1.8 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
73
74
75
{
"name": "lambda",
"version": "0.4.5",
"description": "MIT Scheme IDE, mechanics utilities, and dark magic for the browser",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodejs server/server.js",
"fake": "nodejs server/fake-server.js true",
"build": "./node_modules/webpack/bin/webpack.js webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joeltg/lambda.git"
},
"keywords": [
"scheme",
"repl",
"scmutils",
"lisp",
"mit-scheme",
"mechanics"
],
"private": true,
"os": [
"linux"
],
"engines": {
"node": ">=6.0.0"
},
"author": {
"name": "Joel Gustafson",
"email": "joelg@mit.edu",
"url": "http://joelgustafson.com"
},
"contributors": [
"Gerald Sussman",
"Guillermo Webster",
"Kevin Kwok"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/joeltg/lambda/issues"
},
"homepage": "https://github.com/joeltg/lambda#readme",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2016": "^6.11.3",
"babel-preset-stage-0": "^6.5.0",
"codemirror": "^5.17.0",
"css-loader": "^0.23.1",
"d3-scale": "^1.0.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"katex": "^0.6.0",
"postcss-loader": "^0.10.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2"
},
"dependencies": {
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-handlebars": "^3.0.0",
"express-session": "^1.14.2",
"mit-scheme": "^0.4.9",
"request": "^2.79.0",
"uuid": "^3.0.1",
"websocket": "^1.0.24"
}
}