-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 2.54 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
{
"name": "slext",
"private": true,
"version": "1.8.0",
"description": "Enhances the ShareLatex experience",
"scripts": {
"start": "npm run dev:chrome",
"build": "npm run build:chrome",
"build:chrome": "gulp pack --production --vendor=chrome",
"build:firefox": "gulp pack --production --vendor=firefox",
"build:opera": "gulp pack --production --vendor=opera",
"build:edge": "gulp pack --production --vendor=edge",
"dev": "npm run dev:chrome",
"dev:chrome": "gulp --incremental --vendor=chrome",
"dev:firefox": "gulp --incremental --vendor=firefox",
"dev:opera": "gulp --incremental --vendor=opera",
"dev:edge": "gulp --incremental --vendor=edge",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"lint": "eslint --fix . --ext .js,.ts",
"lint:check": "eslint . --ext .js,.ts",
"pretty-quick": "pretty-quick",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "7.x.x",
"@babel/core": "7.x.x",
"@babel/preset-env": "7.x.x",
"@babel/register": "7.x.x",
"@types/chrome": "^0.x.x",
"@types/jquery": "^3.5.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "8.x.x",
"chai": "4.x.x",
"debounce": "1.x.x",
"del": "6.x.x",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"fancy-log": "^1.3.3",
"gulp": "4.0.x",
"gulp-clean-css": "^4.3.0",
"gulp-filter": "^7.x.x",
"gulp-if": "3.x.x",
"gulp-imagemin": "7.1.0",
"gulp-json-transform": "^0.4.7",
"gulp-plumber": "^1.2.1",
"gulp-sass": "^5.x.x",
"gulp-sourcemaps": "^3.x.x",
"gulp-tag-version": "^1.3.1",
"gulp-zip": "^5.x.x",
"html-loader": "^1.3.1",
"husky": "^6.0.0",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"raw-loader": "^4.0.2",
"require-dir": "^1.2.0",
"sass": "^1.43.2",
"ts-loader": "^8.x.x",
"typescript": "^4.4.x",
"vinyl-named": "1.x.x",
"webpack": "5.x.x",
"webpack-stream": "7.x.x",
"yargs": "^17.x.x"
},
"dependencies": {
"@types/ace": "0.0.47",
"@types/node": "^16.10.9",
"ace-builds": "^1.4.13",
"ace-code-editor": "^1.2.3",
"jquery": "^3.5.1",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0"
}
}