-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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
{
"name": "yuque-blog",
"version": "1.0.0",
"description": "backend by yuque.com",
"scripts": {
"start": "beidou start --daemon",
"debug": "beidou debug",
"stop": "beidou stop",
"dev": "beidou dev",
"build": "beidou build",
"build:node": "beidou build --target=node",
"lint": "eslint --fix --ext .jsx,.js client",
"lint:style": "stylelint \"clent/**/*.scss\" --syntax scss",
"prettier": "prettier --write './client/**/**/**/*.{js,json,scss,css}' '*.js'",
"test": "egg-bin test",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"egg-mock": "^3.19.2",
"eslint": "^4.15.0",
"eslint-config-beidou": "^1.0.3",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"prettier": "^1.14.0",
"stylelint": "^9.4.0",
"stylelint-config-prettier": "^4.0.0",
"webpack-bundle-analyzer": "^3.6.0"
},
"dependencies": {
"axios": "^1.6.4",
"babel-polyfill": "^6.26.0",
"beidou-cli": "^1.0.5",
"beidou-core": "^2.0.0",
"classnames": "^2.2.6",
"domready": "^1.0.8",
"highlight.js": "^10.4.1",
"js-yaml": "^3.12.0",
"markdown-it": "^10.0.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-github-preamble": "^1.0.0",
"markdown-it-katex": "^2.0.3",
"marked": "^2.0.0",
"mobx": "^5.0.3",
"mobx-devtools": "^0.9.18",
"mobx-react": "^5.2.3",
"mobx-react-devtools": "^6.0.2",
"normalize.css": "^8.0.0",
"parallax-js": "^3.1.0",
"prop-types": "^15.6.2",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-router-dom": "^4.3.1",
"snyk": "^1.316.1"
},
"engines": {
"node": ">= 8.0.0"
},
"license": "MIT",
"snyk": true
}