-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
87 lines (87 loc) · 2.28 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
{
"name": "scaphold-io-community",
"description": "Scaphold.io Community",
"version": "1.0.0",
"author": "Vince Ning",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "gatsby develop",
"build": "gatsby build --prefix-links",
"deploy": "gatsby build --prefix-links && gh-pages -d public",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "npm run lint:eslint -- . ",
"lint:eslint": "eslint --ignore-path .gitignore",
"lint:css": "stylelint ./css/*.css"
},
"dependencies": {
"chroma-js": "^0.7.2",
"classnames": "^2.2.5",
"color-pairs-picker": "^1.3.5",
"front-matter": "^2.1.2",
"fuse.js": "^2.6.1",
"gatsby": "^0.12.20",
"lodash": "^4.17.2",
"markdown-it": "^8.2.2",
"object-assign": "^4.1.1",
"prismjs": "^1.6.0",
"react": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-disqus-thread": "^0.4.0",
"react-fontawesome": "^1.5.0",
"react-ga": "^2.1.2",
"react-helmet": "^3.3.0",
"react-html-parser": "^1.0.3",
"react-motion": "^0.1.0",
"react-responsive-grid": "^0.3.3",
"react-router-bootstrap": "^0.23.1",
"react-timeago": "^3.1.3",
"react-typography": "^0.15.0",
"showdown": "^1.6.0",
"typography": "^0.15.0",
"typography-plugin-code": "^0.15.0",
"underscore.string": "^3.2.2"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"gh-pages": "^0.12.0",
"stylelint": "^7.7.1",
"stylelint-config-standard": "^15.0.1"
},
"keywords": [
"scaphold",
"graphql",
"scaphold.io",
"community",
"react",
"apollo",
"relay",
"angular",
"tutorials",
"blog",
"gatsby"
],
"license": "MIT",
"main": "n/a",
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"color-hex-case": "upper",
"string-quotes": "single",
"font-family-name-quotes": "always-where-recommended",
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global"
]
}
],
"indentation": 2
}
}
}