-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 2.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
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
{
"name": "ctfd-theme-tsgctf",
"version": "1.0.0",
"description": "Custom CTFd theme made for TSG CTF",
"author": "Koki Takahashi",
"private": true,
"engines": {
"node": "16"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt",
"build": "nuxt generate && node build.js",
"start": "nuxt start",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"format": "prettier-eslint **/*.js **/*.vue --write --ignore **/tsgctf/** --ignore **/dist/** --ignore **/.nuxt/**",
"precommit": "npm run lint",
"generate": "cross-env NUXT_ENV_STATIC=true nuxt generate",
"dist": "npm run build && cd tsgctf && git init && git remote add origin https://github.com/tsg-ut/ctfd-theme-tsgctf.git && git fetch && git symbolic-ref HEAD refs/remotes/origin/dist && git add . && git commit -m \"Update build\" && git push origin HEAD:dist"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/bulma": "^1.2.7",
"async-mutex": "^0.5.0",
"nuxt": "^3.12.4",
"vue": "^3.4.8",
"vue-clickaway": "^2.2.2",
"vue-material-design-icons": "^5.3.1",
"vue-tweet-embed": "^2.4.0",
"vuex": "^3.6.2"
},
"devDependencies": {
"@hakatashi/eslint-config": "^1.20.0",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/onesignal": "^3.0.0-beta.16",
"@nuxtjs/pwa": "^3.3.5",
"axios": "^1.7.7",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": ">=17.1.0",
"eslint-import-resolver-nuxt": "^1.0.1",
"eslint-plugin-import": ">=2.31.0",
"eslint-plugin-jest": ">=28.9.0",
"eslint-plugin-node": ">=11.1.0",
"eslint-plugin-nuxt": ">=4.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": ">=6.6.0",
"eslint-plugin-standard": ">=4.1.0",
"eslint-plugin-vue": "^9.30.0",
"fs-extra": "^11.2.0",
"http-proxy-middleware": "^3.0.3",
"jsdom": "^25.0.1",
"klaw": "^4.1.0",
"lodash": "^4.17.21",
"nodemon": "^3.1.7",
"normalize.css": "^8.0.1",
"nuxt-client-init-module": "^0.3.0",
"postcss-import-url": "7.2.0",
"precss": "^4.0.0",
"prettier": "^3.3.3",
"prettier-eslint-cli": "^8.0.1",
"vue-spinner": "^1.0.4",
"vue-timeago": "^5.1.3"
}
}