-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.49 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@mov-ai/mov-fe-app-ide-ce",
"version": "3.1.0-3",
"publishConfig": {
"registry": "https://npm.pkg.github.com/mov-ai"
},
"repository": {
"type": "git",
"url": "https://github.com/MOV-AI/frontend-npm-ide-ce.git"
},
"homepage": "/static/mov-fe-app-ide-ce",
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/styles": "^4.11.4",
"@mov-ai/mov-fe-lib-core": "^1.1.2-9",
"@mov-ai/mov-fe-lib-ide": "^1.0.0-56",
"@mov-ai/mov-fe-lib-react": "^1.1.2-24",
"@testing-library/jest-dom": "^5.14.1",
"eslint-config-react-app": "^7.0.1",
"i18next": "^22.4.15",
"lodash.merge": "^4.6.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-i18next": "^11.13.0",
"react-scripts": "^5.0.1",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false react-app-rewired start",
"build": "react-app-rewired --max_old_space_size=4096 build && python3 ./scripts/detach_manifest.py",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"clean": "rm -r node_modules; rm package-lock.json",
"deploy": "./scripts/deployApp.sh mov-fe-app-ide-ce",
"coverage": "npm test -- --coverage"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@codingame/monaco-languageclient": "^0.17.4",
"http-proxy-middleware": "^2.0.4",
"monaco-editor-core": "^0.38.0",
"react-app-rewired": "^2.2.1"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/@babel/core",
"/node_modules/@babylon/core"
],
"moduleNameMapper": {
"ace-builds": "<rootDir>/node_modules/ace-builds"
}
},
"files": [
"manifest.txt",
"build",
"database",
"scripts",
"debian"
],
"movai": {
"name": "mov-fe-app-ide-ce",
"Label": "MOV.AI Flow™",
"Type": "application",
"Package": "mov-fe-app-ide-ce",
"EntryPoint": "index.html",
"Description": "Integrated Development Environment - CE",
"Icon": "fas fa-code",
"Callbacks": [],
"Configuration": "app-ide-ce",
"CustomConfiguration": "app-custom-ide-ce",
"Version": "0.0.1",
"generateMetadata": true
}
}