This repository has been archived by the owner on Dec 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
124 lines (124 loc) · 3.33 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
116
117
118
119
120
121
122
123
124
{
"name": "glamorous-website",
"version": "1.0.0",
"description": "Website for glamorous",
"scripts": {
"dev": "npm start dev",
"build": "npm start build",
"start": "nps",
"precommit": "lint-staged && opt --in pre-commit --exec \"npm start validate\"",
"test": "npm start test"
},
"author": "Paul Molluzzo <[email protected]> (https://paul.molluzzo.com)",
"license": "MIT",
"keywords": [
"glamorous",
"react",
"css-in-js"
],
"dependencies": {
"@kentcdodds/temp-react-live": "1.8.0",
"common-tags": "^1.4.0",
"glamor": "2.20.40",
"glamorous": "4.2.0",
"marked": "^0.3.6",
"next": "3.0.5",
"polished": "1.4.0",
"prismjs": "^1.6.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-markdown": "^2.5.0",
"remark": "^8.0.0",
"remark-html": "^6.0.0",
"slugify": "1.2.1",
"styled-system": "^1.0.0-9",
"unist-util-visit": "^1.1.1",
"webpack": "3.5.5"
},
"devDependencies": {
"all-contributors-cli": "4.4.0",
"ast-pretty-print": "^2.0.0",
"await-url": "^0.3.0",
"babel-core": "6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "7.1.4",
"babel-macros": "^1.2.0",
"babel-plugin-glamorous-displayname": "2.0.0",
"babel-plugin-inline-react-svg": "^0.4.0",
"babel-plugin-tester": "4.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-inline-environment-variables": "0.2.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babylon": "6.18.0",
"chalk": "2.1.0",
"cross-spawn": "^5.1.0",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "4.4.1",
"eslint-config-kentcdodds": "^12.4.2",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "7.2.1",
"glob": "^7.1.2",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-glamor-react": "^3.0.0",
"js-yaml": "^3.8.4",
"lint-staged": "4.0.3",
"normalize-url": "^1.9.1",
"now": "^7.1.1",
"nps": "^5.7.1",
"nps-utils": "^1.3.0",
"octonode": "0.8.0",
"opt-cli": "^1.5.1",
"path-exists": "^3.0.0",
"prettier-eslint-cli": "^4.0.2",
"preval.macro": "^1.0.2",
"react-test-renderer": "^15.5.4",
"remark-frontmatter": "^1.0.0",
"stylelint": "9.1.1",
"stylelint-config-standard": "18.1.0",
"stylelint-processor-glamorous": "0.2.0",
"url-regex": "^4.1.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"./other/test-setup.js"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
},
"testPathIgnorePatterns": [
"/fixtures/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer",
"jest-glamor-react"
]
},
"lint-staged": {
"*.js": [
"prettier-eslint --write --no-semi --single-quote --trailing-comma=es5",
"eslint",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/glamorous-website.git"
},
"bugs": {
"url": "https://github.com/kentcdodds/glamorous-website/issues"
},
"homepage": "https://github.com/kentcdodds/glamorous-website#readme"
}