-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.53 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
{
"name": "bitrock-website",
"displayName": "Bitrock",
"config": {
"themeColor": "#2a2a2a"
},
"description": "In order to successfully develop and apply innovative technology you need to be able to look beyond the horizon, anticipating trends and recognizing the next standards.",
"version": "2.0.0",
"main": "index.js",
"repository": "[email protected]:bitrockteam/bitrock-website.git",
"author": "Salvatore Laisa <[email protected]>",
"contributors": [
"Alessandro Menini <[email protected]>",
"Mattia Ripamonti <[email protected]>"
],
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development vuepress dev ./src",
"build:static": "vuepress build ./src -d ./dist",
"build:clean": "rm -rf ./dist",
"build:cname": "cp ./src/CNAME ./dist/CNAME",
"build:start": "npm run build:clean && npm run build:static",
"build": "npm run build:start",
"postbuild": "node -e \"require('./postbuild.js').moveDemo();\"",
"gh:pages": "gh-pages -d dist"
},
"devDependencies": {
"@vuepress/plugin-back-to-top": "1.0.0-alpha.46",
"@vuepress/plugin-google-analytics": "1.0.0-alpha.46",
"@vuepress/plugin-nprogress": "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"
},
"dependencies": {
"hamburgers": "1.1.3",
"normalize.css": "8.0.1",
"smoothscroll-polyfill": "0.4.4",
"swiper": "5.4.5",
"vue-awesome-swiper": "4.1.1",
"vuepress": "1.4.0"
}
}