-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.2 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
{
"name": "contao-backend-sortable-list-views",
"version": "1.0.0",
"description": "Contao 5 backend with sortable list views",
"main": "assets/sortable-list-views.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "esbuild assets/backend.ts --bundle --minify --sourcemap --target=chrome58,firefox57,safari11,edge16 --outfile=public/backend.min.js",
"watch": "esbuild assets/backend.ts --bundle --minify --sourcemap --target=chrome58,firefox57,safari11,edge16 --outfile=public/backend.min.js --watch",
"lint": "eslint assets/* && prettier assets --check --log-level=warn",
"fix": "eslint --fix assets/* && prettier assets --write --log-level=warn"
},
"author": "",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.0.3",
"sortablejs": "^1.15.0"
},
"devDependencies": {
"@types/sortablejs": "^1.15.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0"
}
}