forked from DTStack/monaco-sql-languages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.62 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
{
"name": "monaco-sql-languages",
"version": "0.11.0",
"description": "SQL languages for the Monaco Editor, based on monaco-languages.",
"scripts": {
"compile": "mrmdir ./out && tsc -p ./src/tsconfig.json && tsc -p ./src/tsconfig.esm.json",
"watch": "tsc -p ./src --watch",
"watch-esm": "tsc -p ./src/tsconfig.esm.json --watch",
"test": "tape -r ./test/all.js",
"prepublishOnly": "mrmdir ./release && npm run compile && node ./scripts/release.js && node ./scripts/bundle",
"prettier": "prettier --write .",
"dev": "node --max_old_space_size=4092 & webpack serve --config ./scripts/webpack.dev.js",
"prod": "mrmdir ./docs && node --max_old_space_size=4092 & webpack --config ./scripts/webpack.prod.js",
"deploy": "npm run prod && gh-pages -d docs"
},
"author": "DTStack Corporation",
"license": "MIT",
"module": "./out/esm/monaco.contribution.js",
"types": "./out/esm/monaco.contribution.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DTStack/monaco-sql-languages"
},
"bugs": {
"url": "https://github.com/DTStack/monaco-sql-languages/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@dtinsight/molecule": "^1.3.0",
"@jcubic/lips": "^1.0.0-beta.14",
"@types/tape": "^4.13.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"css-loader": "^4.3.0",
"eslint": "^7.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"glob": "^7.1.6",
"html-webpack-plugin": "^5.3.1",
"husky": "^4.3.8",
"jsdom": "^16.4.0",
"monaco-editor-webpack-plugin": "^6.0.0",
"monaco-plugin-helpers": "^1.0.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"requirejs": "^2.3.6",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"style-loader": "^2.0.0",
"tape": "^5.1.1",
"terser": "^5.5.1",
"typescript": "4.1.3",
"webpack": "^5.28.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"dt-sql-parser": "^4.0.0-beta.3.2"
}
}