-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 2.11 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
{
"name": "advanced-grid",
"product": "ext",
"version": "0.0.1",
"description": "my-ext-gen-app description for Ext JS app MyExtGenApp",
"repository": {
"type": "git",
"url": "https://github.com/"
},
"keywords": [
"Ext",
"JS",
"Sencha",
"HTML5"
],
"author": "Sencha, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/"
},
"homepage": "http://www.sencha.com",
"scripts": {
"start": "npm run dev",
"clean": "rimraf build",
"dev": "webpack-dev-server --env browser=yes --env verbose=no --env profile=theme-material --env cmdopts=--locale=en",
"build": "npm run clean && cross-env webpack --env environment=production --env treeshake=yes",
"build:testing": "npm run clean && cross-env webpack --env treeshake=yes --env cmdopts=--testing",
"testing:desktop": "npm run clean && cross-env webpack --env treeshake=yes --env cmdopts=--testing --env cmdopts=--build=desktop",
"testing:phone": "npm run clean && cross-env webpack --env treeshake=yes --env cmdopts=--testing --env cmdopts=--build=phone"
},
"dependencies": {
"@sencha/ext": "~7.8.0",
"@sencha/ext-charts": "~7.8.0",
"@sencha/ext-modern": "~7.8.0",
"@sencha/ext-modern-locale": "~7.8.0",
"@sencha/ext-modern-theme-ios": "~7.8.0",
"@sencha/ext-modern-theme-material": "~7.8.0",
"@sencha/ext-modern-theme-neptune": "~7.8.0",
"@sencha/ext-modern-theme-triton": "~7.8.0",
"@sencha/ext-ux": "~7.8.0",
"i18next": "^23.10.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/preset-env": "^7.5.5",
"@sencha/ext-webpack-plugin": "~7.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"cross-env": "^5.2.0",
"lodash.find": "^4.6.0",
"portfinder": "^1.0.21",
"replace": "^1.1.1",
"rimraf": "^3.0.2",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1"
}
}