-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.88 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "kraken-vpr",
"version": "1.0.3",
"description": "UBC CLF8 DRUPAL THEME (aka kraken)",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ubc-web-services/kraken-vpr.git"
},
"keywords": [
"clf",
"ubc",
"kraken"
],
"author": "UBC Web Services",
"license": "MIT",
"bugs": {
"url": "https://github.com/ubc-web-services/kraken-vpr/issues"
},
"homepage": "https://github.com/ubc-web-services/kraken-vpr#readme",
"engines": {
"node": ">= 18"
},
"scripts": {
"watch": "NODE_ENV=development postcss ./src/css/*.css -d ./css -w",
"css": "TAILWIND_MODE=build NODE_ENV=development postcss ./src/css/*.css -d ./css && TAILWIND_MODE=build NODE_ENV=production postcss ./src/css/*.css -d ./css --ext min.css",
"css-lint": "npm run lint:css",
"lint:css": "stylelint \"src/**/*.css\" || exit 0",
"css-fix": "npm run lint:fix-css",
"lint:fix-css": "stylelint \"src/**/*.css\" --fix || exit 0",
"js": "webpack --config webpack.dev.js && webpack --config webpack.prod.js",
"dev": "TAILWIND_MODE=build NODE_ENV=development postcss ./src/css/*.css -d ./css && webpack --config webpack.dev.js",
"prod": "TAILWIND_MODE=build NODE_ENV=production postcss ./src/css/*.css -d ./css --ext min.css && webpack --config webpack.prod.js"
},
"dependencies": {
"bootstrap": "^5.2.3",
"tiny-slider": "^2.9.4",
"vue": "^2.7.14",
"vue-scrollto": "^2.20.0",
"vue-slide-up-down": "^2.0.1",
"vue-tiny-slider": "^0.1.39"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@popperjs/core": "^2.11.8",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"babel-preset-minify": "^0.5.2",
"clickout-event": "^1.1.2",
"css-loader": "^6.7.3",
"cssnano": "^5.1.15",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-vue": "^8.7.1",
"postcss": "^8.4.21",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"postcss-loader": "^6.2.1",
"postcss-prefix-selector": "^1.16.0",
"postcss-simple-vars": "^6.0.3",
"stylelint": "^14.16.1",
"stylelint-checkstyle-formatter": "^0.1.2",
"stylelint-config-standard": "^24.0.0",
"stylelint-no-browser-hacks": "^1.2.1",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.2.7",
"vue-loader": "^15.10.1",
"vue-template-compiler": "^2.7.14",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"browserslist": [
"> 1%",
"not edge <= 18",
"not ie 11",
"not op_mini all"
]
}