forked from kentcdodds/glamorous-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.97 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
{
"name": "glamorous-website",
"version": "1.0.0",
"description": "Website for glamorous",
"scripts": {
"dev": "npm start dev",
"build": "npm start build",
"start": "nps",
"commitmsg": "opt --in commit-msg --exec \"validate-commit-msg\"",
"precommit": "lint-staged && opt --in pre-commit --exec \"npm start validate && npm start build.clean\"",
"test": "npm start test"
},
"author": "Paul Molluzzo <[email protected]> (https://paul.molluzzo.com)",
"license": "MIT",
"keywords": [
"glamorous",
"react",
"css-in-js"
],
"dependencies": {
"common-tags": "^1.4.0",
"glamor": "^2.20.25",
"glamorous": "^3.19.1",
"html-loader": "^0.4.5",
"json-loader": "^0.5.4",
"markdown-loader": "^2.0.0",
"marked": "^0.3.6",
"next": "^2.4.1",
"polished": "^1.1.3",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-live": "^1.5.3",
"react-markdown": "^2.5.0",
"remark": "^7.0.1",
"remark-html": "^6.0.0",
"unist-util-visit": "^1.1.1",
"webpack": "^2.6.1"
},
"devDependencies": {
"all-contributors-cli": "^4.3.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-inline-react-svg": "^0.4.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"commitizen": "^2.9.6",
"cross-env": "^5.0.0",
"cross-spawn": "^5.1.0",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-kentcdodds": "^12.4.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.4",
"jest": "^20.0.4",
"jest-glamor-react": "^1.3.0",
"lint-staged": "^3.5.1",
"normalize-url": "^1.9.1",
"nps": "^5.3.1",
"nps-utils": "^1.2.0",
"octonode": "^0.7.13",
"opt-cli": "^1.5.1",
"prettier-eslint-cli": "^4.0.2",
"react-test-renderer": "^15.5.4",
"url-regex": "^4.1.0",
"validate-commit-msg": "^2.12.1"
},
"jest": {
"testEnvironment": "jsdom",
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
".all-contributorsrc": [
"npm start contributors.generate && echo ignore arg",
"git add README.md && echo ignore arg"
],
"*.js": [
"prettier-eslint --write",
"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"
}