-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
89 lines (89 loc) · 2.58 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "code.pyret.org",
"version": "0.0.0",
"description": "A simple IDE for Pyret",
"main": "index.js",
"dependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-decorators": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"acorn": "^7.4.1",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.20.2",
"bootstrap": "^4.6.2",
"browserify": "^14.5.0",
"chromedriver": "^131.0.5",
"codemirror": "~5.58.2",
"colorspaces": "0.1.4",
"cookie-parser": "^1.4.6",
"cookie-session": "^1.4.0",
"css-loader": "^3.6.0",
"csurf": "^1.11.0",
"d3": "^3.5.17",
"d3-tip": "github:sorawee/d3-tip",
"dotenv": "^2.0.0",
"es6-shim": "0.35.0",
"eslint": "^6.8.0",
"express": "^4.18.2",
"git-rev-sync": "^1.12.0",
"googleapis": "^46.0.0",
"handlebars": "^4.7.8",
"heroku": "^7.69.1",
"hoek": "^5.0.4",
"install": "^0.13.0",
"jquery": "^3.7.1",
"js-md5": "^0.4.2",
"js-sha256": "^0.5.0",
"js-yaml": "^3.14.1",
"jwt-simple": "^0.5.6",
"load-script": "^1.0.0",
"lodash": "^4.17.21",
"mocha": "^8.4.0",
"mousetrap": "^1.6.5",
"mustache": "^2.3.2",
"mustache-express": "^1.3.2",
"node-uuid": "^1.4.8",
"popper.js": "^1.16.1",
"pyret-codemirror-mode": "github:brownplt/pyret-codemirror-mode#master",
"pyret-lang": "github:brownplt/pyret-lang#horizon",
"q": "~1.4.1",
"react": "^15.7.0",
"react-dom": "^15.7.0",
"redis": "^0.10.3",
"request": "^2.88.2",
"requirejs": "2.1.14",
"s-expression": "~2.2.0",
"script-loader": "^0.7.2",
"seedrandom": "~2.3.10",
"sha.js": "^2.4.11",
"source-map": "^0.5.7",
"style-loader": "0.13.1",
"supervisor": "^0.11.0",
"url-loader": "^0.6.2",
"url.js": "^1.0.3",
"webpack": "^5.89.0"
},
"scripts": {
"local-install": "heroku local:run npm install",
"postinstall": "node_modules/webpack/bin/webpack.js && make -j3 web",
"test": "karma start --single-run",
"test-watch": "karma start",
"lint": "eslint src",
"build": "heroku local:run make web-local",
"heroku-postbuild": "bash src/scripts/fetch-anchor.sh",
"mocha": "heroku local:run mocha",
"start": "heroku local:run supervisor --poll-interval 700 --watch src/run.js,src/server.js src/run.js"
},
"repository": {
"type": "git",
"url": "git://github.com/brownplt/code.pyret.org"
},
"author": "Joe Politz",
"license": "Apache-2.0",
"devDependencies": {
"selenium-webdriver": "^3.6.0",
"webpack-cli": "^5.1.4"
}
}