-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
31 lines (31 loc) · 919 Bytes
/
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
{
"name": "apostrophe-documentation",
"version": "2.0.0-alpha",
"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",
"generate": "bash ./generate"
},
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-apostrophe": "^3.4.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"esm": "^3.2.25",
"vuepress": "^1.8.2",
"vuepress-plugin-sitemap": "^2.3.1",
"vuepress-theme-apostrophe": "^1.2.0"
}
}