-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
115 lines (115 loc) · 3.87 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "open-standard-for-data",
"version": "2.0.0",
"main": "index.js",
"repository": "[email protected]:theodi/open-standards-guidebook.git",
"author": "Kind <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"algolia:index": "bundle exec jekyll algolia",
"build": "yarn build:design-tokens && yarn build:assets && yarn build:jekyll",
"build:assets": "vue-cli-service build",
"build:design-tokens": "./scripts/assets/designTokens",
"build:jekyll": "JEKYLL_ENV='production' bundle exec jekyll build",
"build:fractal": "yarn build:assets && fractal build",
"docs:toc": "./scripts/docs/gh-md-toc README.md",
"generate:component": "hygen fractal-component new",
"lint": "concurrently \"vue-cli-service lint --fix && vue-cli-service lint:style\"",
"lint:config-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint:html": "yarn build && bundle exec rake check_html",
"lint:js": "vue-cli-service lint --fix",
"lint:styles": "vue-cli-service lint:style",
"project:after-install": "./scripts/project/after-install",
"project:apply-env": "./scripts/project/apply-env",
"project:configure": "./scripts/project/configure",
"project:release": "./scripts/deploy/release",
"serve": "concurrently 'yarn serve:assets' 'yarn serve:fractal' 'yarn serve:jekyll'",
"serve:jekyll": "JEKYLL_ENV=development bundle exec jekyll serve --config _config.yml,_config.dev.yml",
"serve:assets": "vue-cli-service serve",
"serve:fractal": "fractal start"
},
"engines": {
"node": "^10.15.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"@frctl/fractal": "^1.1.7",
"@frctl/mandelbrot": "^1.2.0",
"@frctl/twig": "^1.0.0-beta.5",
"algoliasearch": "^3.33.0",
"barefoot": "philgruneich/barefoot",
"breakpoint-sass": "^2.7.1",
"colors": "^1.3.3",
"dotenv": "^8.0.0",
"enquire.js": "^2.1.6",
"instantsearch.js": "^3.6.0",
"ip": "^1.1.5",
"js-yaml": "^3.13.1",
"jsonfile": "^5.0.0",
"littlefoot": "^1.0.0",
"modularscale-sass": "^3.0.8",
"svg4everybody": "^2.1.9",
"vue": "^2.6.10",
"vue-instantsearch": "^2.3.0"
},
"devDependencies": {
"@ascendancyy/vue-cli-plugin-stylelint": "^1.1.2",
"@babel/core": "^7.5.0",
"@vue/babel-preset-app": "^3.4.0",
"@vue/cli-plugin-babel": "^3.4.0",
"@vue/cli-plugin-eslint": "^3.4.0",
"@vue/cli-service": "^3.0.0-rc.10",
"@vue/eslint-config-airbnb": "^4.0.0",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-preset-env": "^1.7.0",
"commander": "^2.19.0",
"concurrently": "^4.1.1",
"copy-webpack-plugin": "^5.0.2",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.0.0",
"glob-all": "^3.1.0",
"globby": "^10.0.1",
"husky": "^3.0.0",
"hygen": "^4.0.7",
"inquirer": "^6.2.2",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"prettier": "^1.16.4",
"prettier-stylelint": "^0.4.2",
"purgecss-whitelister": "^2.1.0",
"randomatic": "^3.1.1",
"sane": "^4.1.0",
"sass-loader": "^7.1.0",
"shelljs": "^0.8.3",
"stylelint": "^10.1.0",
"stylelint-config-idiomatic-order": "^7.0.0",
"stylelint-config-sass-guidelines": "^6.0.0",
"stylelint-config-standard": "^18.3.0",
"svgo": "^1.1.0",
"svgo-loader": "^2.1.0",
"theo": "^8.1.3",
"vue-cli-plugin-svg-sprite": "^1.0.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.35.3",
"webpack-manifest-plugin": "^2.0.3"
},
"buildConfig": {
"title": "Open Standards for Data",
"siteName": "Open Standards for Data",
"ports": {
"assets": 8780,
"fractal": 4054
}
}
}