forked from brownplt/code.pyret.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.09 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "code.pyret.org",
"version": "0.0.0",
"type": "module",
"description": "A simple IDE for Pyret",
"keywords": [
"pyret",
"pyret-lang",
"editor",
"ide",
"language",
"education",
"compiler"
],
"author": "Joe Politz",
"scripts": {
"test": "karma start --single-run",
"test-watch": "karma start",
"lint": "eslint src",
"build": "webpack && make -j3 web && make web-local",
"mocha": "mocha",
"start": "supervisor --poll-interval 700 --watch src/run.js,src/server.js src/run.js",
"heroku-postbuild": "make deploy-cpo-main && yarn build"
},
"dependencies": {
"@popperjs/core": "^2.9.2",
"acorn": "^8.4.0",
"body-parser": "^1.19.0",
"bootstrap": "^5.0.1",
"browserify": "^17.0.0",
"codemirror": "^5.61.1",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"csurf": "^1.11.0",
"d3": "^7.0.0",
"d3-tip": "https://github.com/sorawee/d3-tip.git#commit=b2dcaa106ccd189e60388c6030c6b2f713959448",
"es6-shim": "0.35.6",
"eslint": "^7.29.0",
"express": "^4.17.1",
"git-rev-sync": "^3.0.1",
"googleapis": "^77.0.0",
"handlebars": "^4.7.7",
"install": "^0.13.0",
"jquery": "^3.6.0",
"js-md5": "^0.7.3",
"js-sha256": "^0.9.0",
"js-yaml": "^4.1.0",
"jwt-simple": "^0.5.6",
"load-script": "^1.0.0",
"lodash": "^4.17.21",
"mocha": "^9.0.1",
"mousetrap": "^1.6.5",
"mustache": "^4.2.0",
"mustache-express": "^1.3.1",
"pyret-codemirror-mode": "https://github.com/brownplt/pyret-codemirror-mode.git#commit=465bda4d5ae28ad99f4249bccafd8dc5d67a0850",
"q": "^1.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redis": "^3.1.2",
"request": "^2.88.2",
"requirejs": "2.3.6",
"s-expression": "^3.1.1",
"seedrandom": "^3.0.5",
"sha.js": "^2.4.11",
"source-map": "0.7.3",
"supervisor": "^0.12.0",
"url.js": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"chromedriver": "^91.0.1",
"css-loader": "^5.2.6",
"dotenv": "^10.0.0",
"dotenv-extended": "^2.9.0",
"dotenv-parse-variables": "^2.0.0",
"eslint-plugin-unicorn": "^33.0.1",
"esmify": "^2.1.1",
"karma": "^6.3.4",
"karma-jasmine": "^4.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"pyret-lang": "https://github.com/brownplt/pyret-lang.git#commit=fe7570e102159311d8b31f8c42122fbfa52b3a28",
"script-loader": "^0.7.2",
"selenium-webdriver": "^4.0.0-beta.4",
"style-loader": "2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2"
},
"homepage": "https://github.com/lemueldls/code.pyret.org#readme",
"repository": "git+https://github.com/lemueldls/code.pyret.org.git",
"bugs": {
"url": "https://github.com/lemueldls/code.pyret.org/issues"
},
"license": "Apache-2.0",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"directories": {
"test": "test"
}
}