forked from webix-hub/jet-start
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 KB
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
{
"name": "webix-jet-app",
"version": "1.1.0",
"description": "Webix Jet App",
"main": "sources/myapp.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint sources/",
"build": "webpack --env production",
"module": "webpack --env production --env module",
"standalone": "webpack --env production --env module --env standalone",
"start": "webpack serve --open"
},
"keywords": [
"webix",
"jet"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.0",
"eslint": "^8.13.0",
"eslint-plugin-import": "^2.26.0",
"file-loader": "^6.2.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"eslint-config-xbsoftware": "^5.0.0-alpha.2",
"webix-jet": "^2.1.3"
}
}