-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
executable file
·56 lines (56 loc) · 1.34 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
{
"name": "design-systems-repo",
"private": true,
"description": "Welcome to the Design Systems Repo. A frequently updated and growing collection of Design System examples, articles, tools and talks.",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jadlimcaco/design-systems-repo.git"
},
"keywords": [
"design",
"system",
"styleguide",
"component",
"library"
],
"author": "Jad Limcaco",
"scripts": {
"build": "gridsome build",
"develop": "gridsome develop",
"explore": "gridsome explore"
},
"dependencies": {
"@gridsome/plugin-google-analytics": "^0.1.0",
"@gridsome/source-filesystem": "^0.6.2",
"@gridsome/transformer-remark": "^0.5.0",
"gridsome": "^0.7.14",
"gridsome-plugin-netlify-cms": "^1.0.9",
"gridsome-plugin-netlify-cms-paths": "^0.3.1",
"netlify-cms": "^2.10.47"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"gridsome-plugin-purgecss": "^1.0.12",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.1.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}