-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "embedded_sagecell.js",
"version": "1.0.0",
"description": "Sage cell that can be embedded into a webpage",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:copystatic": "mkdir -p build/vendor && cp static/sagecell.css static/fontawesome.css static/colorpicker/js/colorpicker.js static/colorpicker/css/colorpicker.css build/vendor",
"build:deps": "npm run build:copystatic && node fetch_vendor_js.mjs",
"build": "webpack --mode production",
"watch": "webpack --watch --mode development"
},
"repository": {
"type": "git",
"url": "https://github.com/sagemath/"
},
"keywords": [
"sage"
],
"author": "Jason Grout, Andrey Novoseltsev, Ira Hanson, Alex Kramer",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"codemirror": "^5.65.1",
"domready": "^1.0.8",
"es6-promise": "^4.2.8",
"jquery": "^3.6.0",
"jquery-ui": "^1.13.2",
"jquery-ui-themes": "^1.12.0",
"jsmol": "^1.0.0",
"moment": "^2.29.4",
"node-fetch": "^3.2.10",
"sockjs": "^0.3.24",
"sockjs-client": "^1.5.2",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.2.6",
"underscore": "^1.13.2",
"webpack-jquery-ui": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/plugin-transform-modules-amd": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"eslint": "^8.9.0",
"raw-loader": "^4.0.2",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
}
}