-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.57 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
{
"name": "@diesel-parser/diesel-json-sandbox",
"version": "1.0.0",
"private": true,
"description": "",
"scripts": {
"start": "npm run copy:monacoworkers && npm run build:sass && webpack serve",
"build:sass": "sass --style=compressed --load-path=../node_modules/ src/style.scss src/style.css",
"prettify": "prettier --write .",
"lint": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix",
"copy:monacoworkers": "shx mkdir -p dist && shx cp -r ../node_modules/monaco-editor-workers/dist/workers/editorWorker* ./dist",
"build": "npm run lint && npm run copy:monacoworkers && webpack",
"gh-pages": "gh-pages -d dist -m 'sandbox [ci skip]'"
},
"dependencies": {
"@carbon/icons-react": "^11.53.0",
"@carbon/react": "^1.71.0",
"@diesel-parser/json-form": "^4.0.0",
"@diesel-parser/monaco": "~0.1.0",
"monaco-editor-workers": "0.34.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-tea-cup": "^2.2.3",
"tea-cup-core": "^2.2.3",
"tea-pop-core": "^5.0.0",
"tea-pop-menu": "^5.0.0"
},
"devDependencies": {
"@diesel-parser/ts-facade": "~0.18.0",
"@types/react": "^17.0.83",
"@types/react-dom": "^17.0.25",
"@types/vscode": "~1.69.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.3.1",
"sass": "^1.81.0",
"shx": "~0.3.4",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.2",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}