-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.35 KB
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
{
"name": "pysheep",
"version": "1.0.0",
"engines": {
"node": "^24.14.1"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server",
"build-dev": "rimraf ../manuallybuiltsheep*.* && cross-env NODE_ENV=development webpack --progress --config webpack.config.js",
"build": "rimraf ../manuallybuiltsheep*.* && cross-env NODE_ENV=production webpack --progress --config webpack.config.js",
"build-shepherd": "rimraf ../static/editor && cross-env NODE_ENV=production SHEPHERD=1 webpack --progress --config webpack.config.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^2.0.6",
"ajv": "^6.10.2",
"blockly": "3.20200924.4",
"fast-deep-equal": "^2.0.1",
"file-saver": "^2.0.2",
"front-matter": "^3.0.2",
"json-schema-traverse": "^0.4.1",
"jszip": "^3.2.2",
"lodash": "^4.17.15",
"minireset.css": "0.0.3",
"monaco-editor": "0.14.3",
"monaco-editor-webpack-plugin": "1.5.4",
"monaco-languageclient": "^0.9.1",
"normalize-url": "^3.3.0",
"prismjs": "^1.30.0",
"raw-loader": "^0.5.1",
"resize-observer-polyfill": "^1.5.1",
"tslib": "^2.8.1",
"uri-js": "^4.2.2",
"vue": "^2.6.10",
"vue-prism-component": "^1.1.1",
"vue-router": "^3.1.3",
"vue-split-panel": "^1.0.4",
"vuex": "^3.1.1"
},
"devDependencies": {
"@types/file-saver": "^2.0.1",
"@types/jszip": "^3.1.6",
"@types/lodash": "^4.14.144",
"@types/node": "^10.14.22",
"@types/normalize-url": "^1.9.1",
"@types/resize-observer-browser": "^0.1.11",
"@types/vue": "^2.0.0",
"cpy-cli": "^2.0.0",
"cross-env": "^5.2.1",
"css-loader": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^1.18.2",
"rimraf": "^2.7.1",
"sass": "^1.99.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"svg-url-loader": "^2.3.3",
"terser": "^3.17.0",
"terser-webpack-plugin": "^1.4.1",
"ts-loader": "^5.4.5",
"typescript": "^5.9.3",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
}
}