-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.57 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.57 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
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
{
"name": "silverstripe-betamask",
"version": "0.0.0",
"repository": "https://github.com/silverstripeltd/betamask.git",
"author": "Silverstripe <hello@silverstripe.com>",
"license": "MIT",
"scripts": {
"dev": "npx mix",
"watch": "npx mix watch",
"build": "cross-env NODE_ENV=production npx mix --production",
"prettier:check": "prettier --check client/src/**/*.{scss,vue}",
"prettier:write": "prettier --write client/src/**/*.{scss,vue}",
"lint:css": "stylelint client/src/scss/**/*.scss client/src/js/**/*.vue",
"lint:js": "eslint --ext .js,.vue client/src/js",
"lint": "yarn lint:css && yarn lint:js",
"cloud-build": "yarn build"
},
"engines": {
"node": "^20.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@types/jest": "^29.2.5",
"@vue/compiler-sfc": "^3.2.41",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"browser-sync": "^2.27.10",
"browser-sync-webpack-plugin": "^2.3.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"eslint-webpack-plugin": "^3.2.0",
"fs-extra": "^10.1.0",
"html-webpack-plugin": "^5.5.0",
"laravel-mix": "^6.0.49",
"node-sass-glob-importer": "^5.3.2",
"nyc": "^15.1.0",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.5",
"prettier": "^2.7.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-scss": "^4.3.0",
"stylelint-webpack-plugin": "^3.3.0",
"ts-jest": "^27.1.5",
"typescript": "^4.9.4",
"vue-eslint-parser": "^9.1.0",
"vue-loader": "^17.0.0",
"webpack": "^5.76.0",
"bootstrap": "^5.2.2"
},
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@vueuse/core": "^9.12.0",
"vue": "^3.1",
"vuex": "^4.0",
"@popperjs/core": "^2.11.8"
}
}