forked from apostrophecms/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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
{
"name": "a3-docs",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"dev": "npm run docs:dev",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs --dest dist",
"build": "npm run docs:build",
"test": "npx eslint .",
"deploy": "npm run build && bash ./deploy && rm -r ./dist",
"deploy-all": "npm run build && ENV=staging bash ./deploy && ENV=production bash ./deploy && rm -r ./dist"
},
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-apostrophe": "^3.2.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"stylelint": "^13.11.0",
"stylelint-config-apostrophe": "^1.0.0",
"stylelint-plugin-stylus": "^0.10.0",
"vuepress": "^1.5.4",
"esm": "^3.2.25",
"markdown-it-attrs": "^4.0.0",
"@vuepress/plugin-google-analytics": "^1.5.4",
"vuepress-plugin-sitemap": "^2.3.1",
"vuepress-theme-apostrophe": "git://github.com/apostrophecms/vuepress-theme-apostrophe.git"
},
"dependencies": {
"markdown-it": "^12.0.6"
}
}