-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "mdb-starter-parcel",
"version": "1.0.0",
"scripts": {
"start": "parcel ./src/index.html",
"prebuild": "del-cli ./dist/**.** !./dist/package.json !./dist/.mdb",
"build": "parcel build --public-url ./ ./src/index.html --dist-dir ./dist --no-cache",
"test": "jest",
"lint": "lint-staged && pretty-quick --staged",
"deploy": "npm run build && cd dist && mdb publish"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix"
],
"src/**/*.css": [
"stylelint --fix"
]
},
"repository": "https://github.com/mdbootstrap/mdb-starter-parcel",
"keywords": [
"material design",
"bootstrap",
"mdbootstrap",
"starter",
"parcel"
],
"author": "MDBootstrap",
"license": "MIT",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"@parcel/transformer-sass": "^2.7.0",
"@parcel/validator-eslint": "^2.7.0",
"autoprefixer": "^10.4.13",
"core-js": "^3.25.0",
"del-cli": "^5.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.7.1",
"jest": "^29.0.1",
"lint-staged": "^10.2.4",
"parcel": "^2.7.0",
"postcss": "^8.4.19",
"postcss-cli": "^10.0.0",
"postcss-custom-properties": "^13.0.0",
"postcss-import": "^15.0.0",
"postcss-url": "^10.1.3",
"pretty-quick": "^3.1.3",
"purgecss": "^5.0.0",
"sass": "^1.56.1",
"stylelint": "^14.11.0"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"chart.js": "^3.9.1",
"chartjs-plugin-datalabels": "^2.1.0",
"deepmerge": "^4.2.2",
"detect-autofill": "^1.1.4",
"mdb-ui-kit": "^7.3.2",
"perfect-scrollbar": "^1.5.5"
}
}