-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.86 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
{
"name": "mio9.sh",
"version": "1.0.0",
"description": "Official website of MiO9",
"author": "mio9",
"private": true,
"scripts": {
"dev": "export NODE_OPTIONS=--openssl-legacy-provider && cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "npm run clean && nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"clean": "rm -rf dist/"
},
"dependencies": {
"@feathersjs/configuration": "^2.0.6",
"@feathersjs/express": "^1.3.1",
"@feathersjs/feathers": "^3.3.1",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/markdownit": "^1.2.9",
"@nuxtjs/pwa": "^2.6.0",
"@nuxtjs/sitemap": "^2.4.0",
"cross-env": "^5.2.1",
"markdown-it-checkbox": "^1.1.0",
"markdown-it-highlightjs": "^3.4.0",
"nuxt": "^2.15.3",
"nuxt-device-detect": "^1.1.5",
"showdown": "^1.9.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@nuxtjs/eslint-config": "^0.0.1",
"@nuxtjs/fontawesome": "^1.1.2",
"babel-eslint": "^10.1.0",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-nuxt": "^0.5.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^5.2.3",
"nodemon": "^1.19.4",
"prettier": "^1.19.1"
}
}