-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.19 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "vue-bbs",
"version": "0.1.3",
"description": "Serverless comment system in Vue",
"main": "dist/index.js",
"author": "stonehank <stonehank310@gmail.com>",
"sideEffects": false,
"scripts": {
"test": "jest --coverage && codecov",
"build": "npm run build:main & npm run build:demo",
"build:main": "cross-env NODE_ENV=production webpack",
"build:lib": "babel src --out-dir lib --copy-files",
"build:demo": "webpack --config webpack.demo.config.js",
"start": "webpack-dev-server --open --config webpack.dev.config.js --mode development",
"start:demo": "webpack-dev-server --open --config webpack.demo.config.js --mode development"
},
"keywords": [
"vue",
"comments",
"simple",
"easy-to-use",
"fast-and-safe",
"comment-system"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stonehank/vue-bbs.git"
},
"homepage": "https://github.com/stonehank/vue-bbs#README",
"peerDependencies": {
"vue": "^2.6.11",
"firebase": "^9.1.1"
},
"dependencies": {
"blueimp-md5": "^2.12.0",
"clone-deep": "^4.0.1",
"firebase": "^9.1.1",
"highlight.js": "^9.18.1",
"html-to-md": "^0.5.0",
"js-cookie": "^2.2.1",
"marked": "^0.8.1",
"mockjs": "^1.1.0",
"node-fetch": "^2.6.0",
"uuid": "^8.3.2",
"vue": "^2.6.11",
"vue2-transitions": "^0.3.0",
"xss": "^1.0.9"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@testing-library/react": "^10.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"clean-webpack-plugin": "^3.0.0",
"codecov": "^3.8.2",
"cross-env": "^7.0.3",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"error-overlay-webpack-plugin": "^0.4.1",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-react": "^7.19.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"is-wsl": "^2.1.1",
"jest": "^25.1.0",
"jsdom": "^16.2.1",
"nock": "^12.0.3",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-flexbugs-fixes": "^4.2.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-safe-parser": "^4.0.2",
"react-test-renderer": "^16.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"vue-jest": "^3.0.7",
"vue-loader": "^15.8.3",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.11",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpackbar": "^4.0.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"setupFilesAfterEnv": [
"<rootDir>/__mocks__/localStorageMock.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}