-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.3 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
{
"name": "django-cruditor",
"description": "A set of class based views and mixins to generate CRUD interfaces.",
"version": "1.0.0",
"author": "Stephan Jaekel <[email protected]>",
"license": "MIT",
"scripts": {
"develop": "parcel watch",
"build": "parcel build && rm -fr ./cruditor/client && cp -r client ./cruditor/client",
"validate": "npm run validate-spaces && npm run validate-js && npm run validate-scss",
"validate-scss": "stylelint client/scss/",
"validate-js": "eslint client/js/",
"validate-spaces": "lintspaces --editorconfig .editorconfig --maxnewlines 2 --ignores js-comments ./*.js ./*.json ./*.yml ./client/**/*.js ./client/*.scss ./client/**/*.scss ./cruditor/*.html ./cruditor/**/*.html"
},
"targets": {
"frontend": {
"source": "client/scss/cruditor.scss",
"distDir": "cruditor/static/cruditor/css"
},
"backend": {
"source": "client/js/cruditor.js",
"distDir": "cruditor/static/cruditor/js"
}
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@parcel/transformer-sass": "^2.13.3",
"eslint": "^9.16.0",
"lintspaces": "^0.12.0",
"lintspaces-cli": "^1.0.0",
"parcel": "^2.13.3",
"stylelint": "^16.13.2"
}
}