-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
128 lines (128 loc) · 4.24 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
125
126
127
128
{
"name": "tapestry-wp",
"version": "4.0.0",
"description": "Wordpress API Universal React Renderer",
"main": "./src/index.js",
"files": [
"bin/",
"bootstrap/",
"src/",
"logo/favicon.ico"
],
"repository": "shortlist-digital/tapestry-wp",
"scripts": {
"lint": "eslint . --fix --cache",
"test": "LOG_LEVEL=silent mocha ./src/**/*.test.js ./test/**/*.test.js --require test/babel-register --bail",
"pre-commit-msg": "echo \"Performing pre-commit checks...\" && exit 0",
"lint-staged": "lint-staged",
"preversion": "npm run lint && npm run test",
"postversion": "git push && git push --tags",
"docs:build": "npm run docs:prepare && gitbook build && npm run docs:favicon",
"docs:clean": "rimraf _book",
"docs:favicon": "icon-gen -i logo/tapestry-logo-glyph.svg -o _book/gitbook/images/ -m all -n ico=favicon -r && npm run docs:rename-apple-icon",
"docs:git-push": "git push git@github.com:shortlist-digital/tapestry-wp gh-pages --force",
"docs:prepare": "gitbook install",
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book [skip ci]' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && npm run docs:git-push",
"docs:rename-apple-icon": "cp _book/gitbook/images/favicon-152.png _book/gitbook/images/apple-touch-icon-precomposed-152.png",
"docs:watch": "npm run docs:prepare && gitbook serve"
},
"contributors": [
"Elliot Coad <elliot.coad@shortlist.com>",
"Jon Sherrard <jon.sherrard@shortlist.com>",
"Mat Hawley <mathew.hawley@shortlist.com>",
"Thomas Digby <thomas.digby@shortlist.com>"
],
"license": "ISC",
"bin": {
"tapestry": "./bin/tapestry"
},
"engineStrict": true,
"engines": {
"node": ">= 7.6.0",
"npm": ">= 4.1.2"
},
"dependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^7.0.0",
"babel-plugin-idx": "^2.0.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.0",
"cache-manager": "^2.4.0",
"cache-manager-redis-store": "^1.2.0",
"chalk": "^2.1.0",
"clean-webpack-plugin": "^0.1.16",
"core-js": "^2.5.0",
"create-react-class": "^15.6.0",
"es6-promise": "^4.1.0",
"file-loader": "^1.1.5",
"fs-extra": "^4.0",
"glamor": "2.20.25",
"glob-fs": "^0.1.6",
"h2o2": "^6.0.1",
"hapi": "~16.6.2",
"hapi-require-https": "^2.1.0",
"http-status": "^1.0.1",
"idx": "^2.1.0",
"inert": "^4.2.0",
"isomorphic-fetch": "^2.2.1",
"joi": "^12.0.0",
"location-origin": "^1.1.4",
"lodash.isempty": "^4.4.0",
"lodash.isfunction": "^3.0.8",
"lodash.isplainobject": "^4.0.6",
"lodash.startswith": "^4.2.1",
"mitt": "^1.1.0",
"nodemon": "^1.14.10",
"pretty-bytes": "^4.0.2",
"prop-types": "^15.5.7",
"react-helmet": "^5.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-object-inspector": "^0.2.1",
"react-router": "~3.0.5",
"sade": "^1.3.0",
"shortid": "^2.2.8",
"source-map-support": "^0.5.0",
"stats-webpack-plugin": "^0.6.0",
"throng": "^4.0.0",
"validator.js": "^2.0.3",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.1",
"webpack-node-externals": "^1.5.4",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^4.0.2",
"editorconfig-tools": "^0.1.1",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.0",
"gitbook-cli": "^2.3.0",
"icon-gen": "^1.0.7",
"lint-staged": "^4.0.0",
"mocha": "^4.0.1",
"nock": "^9.0.11",
"pre-commit": "^1.2.2",
"prettier": "1.9.2",
"react": "~16.2.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "~16.2.0",
"request": "^2.81.0",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"react": "~16.2.0",
"react-dom": "~16.2.0"
},
"pre-commit": [
"pre-commit-msg",
"lint-staged"
]
}