-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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": "seabass-editor",
"description": "web-editor component for Seabass app",
"main": "index.js",
"scripts": {
"lint": "tsc && ts-standard ./editor",
"test": "jest --config=./editor/jest.config.js",
"test-watch": "jest --watch --config=./editor/jest.config.js",
"build": "webpack",
"build-watch": "webpack --watch",
"build-watch-ut": "webpack --watch --config-name=ubports"
},
"keywords": [
"seabass",
"editor"
],
"author": "Mikhail Milikhin",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/lodash": "^4.14.191",
"babel-jest": "^25.4.0",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"file-loader": "^6.2.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"sass": "^1.70.0",
"sass-loader": "^14.1.0",
"style-loader": "^1.3.0",
"ts-standard": "^12.0.2",
"typescript": "^5.5.3",
"uuid": "^7.0.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@codemirror/language-data": "^6.1.0",
"@codemirror/theme-one-dark": "^6.1.0",
"@vscode/codicons": "^0.0.33",
"codemirror": "^6.0.1",
"codemirror-languageserver": "git+https://github.com/milikhin/codemirror-languageserver.git",
"vanilla-framework": "^4.7.0"
}
}