forked from tsg-ut/ctfd-theme-tsgctf
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 2.29 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
{
"name": "ctfd-theme-pbctf",
"version": "1.0.0",
"description": "Custom CTFd theme made for pbctf, forked from TSGCTF's theme",
"author": "Koki Takahashi, knapstack, theKidOfArcrania",
"private": true,
"engines": {
"node": "10"
},
"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 **/ctfdist/** --ignore **/CTFd/** --ignore **/dist/** --ignore **/.nuxt/**",
"precommit": "npm run lint",
"generate": "cross-env NUXT_ENV_STATIC=true nuxt generate",
"dist": "npm run build && cd ctfdist && git init && (git remote add origin https://github.com/perfectblue/ctfd-theme-pbctf.git || true) && 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.11.0",
"@nuxtjs/bulma": "^1.2.7",
"async-mutex": "^0.3.2",
"nuxt": "^2.13.3",
"vue-clickaway": "^2.2.2",
"vue-material-design-icons": "^4.13.0",
"vue-tweet-embed": "^2.4.0"
},
"devDependencies": {
"@hakatashi/eslint-config": "^1.13.0",
"@nuxtjs/eslint-config": "^3.0.0",
"@nuxtjs/markdownit": "^1.2.9",
"@nuxtjs/onesignal": "^3.0.0-beta.16",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": ">=14.1.1",
"eslint-plugin-import": ">=2.22.0",
"eslint-plugin-jest": ">=23.17.1",
"eslint-plugin-node": ">=11.1.0",
"eslint-plugin-nuxt": ">=1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-standard": ">=4.0.1",
"eslint-plugin-vue": "^7.20.0",
"fs-extra": "^9.0.1",
"http-proxy-middleware": "^1.0.4",
"jsdom": "^16.2.2",
"klaw": "^3.0.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.4",
"normalize.css": "^8.0.1",
"nuxt-client-init-module": "^0.1.8",
"postcss-import-url": "^5.1.0",
"precss": "^4.0.0",
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.0",
"vue-spinner": "^1.0.3",
"vue-timeago": "^5.1.2"
}
}