-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "Kanon",
"version": "1.0.0",
"description": "A live programming environment specialized for data structure programming.",
"main": "app.js",
"scripts": {
"create": "node_modules/.bin/electron-packager . --platform=darwin --overwrite",
"app": "electron .",
"open": "open Kanon-darwin-x64/Kanon.app",
"test": "mocha tests/**/*.js",
"start": "grunt serve",
"preinstall": "git submodule update --init --recursive",
"build-menu": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prg-titech/Kanon.git"
},
"author": "Akio Oka",
"license": "MIT",
"bugs": {
"url": "https://github.com/prg-titech/Kanon/issues"
},
"homepage": "https://github.com/prg-titech/Kanon#readme",
"dependencies": {
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.2",
"@babel/preset-react": "7.13.13",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"ace-builds": "1.2.5",
"babel-loader": "^8.2.2",
"d3": "5.16.0",
"electron": "13.3.0",
"electron-packager": "15.2.0",
"esprima": "3.1.3",
"jquery": "3.6.0",
"jquery-ui-dist": "1.12.1",
"npm": "^6.9.0",
"path": "^0.12.7",
"split-pane": "0.5.1",
"vis": "4.17.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"with": "^6.0.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-watch": "^1.0.0"
}
}