-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.04 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
{
"name": "amber-website",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:bitrockteam/amber-website.git",
"author": "Salvatore Laisa <[email protected]>",
"contributors": [
"Alessandro Menini <[email protected]>",
"Anthony Penna <[email protected]>"
],
"license": "MIT",
"scripts": {
"start": "vuepress dev ./src",
"build:static": "vuepress build ./src ./dist",
"build:clean": "rm -rf ./dist",
"build:cname": "cp ./src/CNAME ./dist/CNAME",
"build": "npm run build:clean && npm run build:static && npm run build:cname",
"gh:pages": "gh-pages -d dist",
"deploy": "npm run build && npm run gh:pages"
},
"dependencies": {
"@amber-ds/visual": "1.0.1",
"vuepress": "1.0.0-alpha.46"
},
"devDependencies": {
"@vuepress/plugin-back-to-top": "1.0.0-alpha.46",
"@vuepress/plugin-google-analytics": "1.0.0-alpha.46",
"@vuepress/plugin-pwa": "1.0.0-alpha.46",
"gh-pages": "2.0.1",
"node-sass": "4.13.1",
"sass-loader": "7.1.0"
}
}