-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "plus-pc-new",
"version": "2.0.0-beta.1",
"description": "(prototype) Vue server-side render for ThinkSNS+ desktop view.",
"author": "mutoe",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-pattern *.min.js .",
"test": "npm run test:unit",
"test:unit": "ava --verbose",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.4.1",
"@nuxtjs/dotenv": "^1.4.1",
"cross-env": "^5.2.0",
"github-markdown-css": "^3.0.0",
"iview": "^3.3.3",
"js-md5": "^0.7.3",
"lodash": "^4.17.11",
"markdown-it": "^8.4.2",
"markdown-it-plus-image": "^1.0.1",
"nuxt": "^2.13.2",
"plus-message-bundle": "^1.0.2",
"tiptap": "^1.14.0",
"tiptap-extensions": "^1.14.0",
"vue-cropper": "^0.4.9",
"xss": "^1.0.6"
},
"devDependencies": {
"@babel/preset-env": "^7.10.3",
"@babel/register": "^7.10.3",
"@nuxtjs/style-resources": "^0.1.1",
"@vue/eslint-config-standard": "^4.0.0",
"ava": "^1.3.1",
"babel-eslint": "^8.2.1",
"eslint": "^6.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-vue": "^5.0",
"jsdom": "^14.0.0",
"less": "^3.9.0",
"less-loader": "^4.1.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"ava": {
"files": [
"test/**/*.js"
],
"require": [
"@babel/register"
]
}
}