-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 3.57 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
{
"name": "tapestry-lite",
"version": "7.3.0",
"description": "Universal React & Wordpress Renderer",
"main": "./src/server/index.js",
"bin": {
"tapestry": "./bin/index.js"
},
"engines": {
"node" : ">=10.0.0 <11.0.0"
},
"files": [
"src/",
"bin/",
"babel.js"
],
"repository": "shortlist-digital/tapestry-lite",
"scripts": {
"precommit": "lint-staged",
"prepublishOnly": "npm run lint && npm run test",
"lint": "eslint . --fix --cache",
"test": "HOST=localhost npm run test:server && npm run test:integration",
"test:server": "NODE_ENV=test LOG_LEVEL=info mocha ./src/**/*.test.js ./test/server/*.test.js --require test/babel-register",
"test:integration": "TAPESTRY_PORT=4321 NODE_ENV=test LOG_LEVEL=info mocha ./test/integration/*.test.js --require test/babel-register"
},
"license": "ISC",
"devDependencies": {
"@babel/register": "^7.0.0",
"@shortlist-studio/eslint-config-standard": "^0.1.0",
"chai": "^4.0.2",
"editorconfig-tools": "^0.1.1",
"husky": "^2.2.0",
"jsdom": "^15.2.0",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"prettier": "^1.14.2",
"pstree": "^0.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"request": "^2.88.0",
"requisition": "^1.7.0",
"shelljs": "^0.8.2"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
"@babel/plugin-transform-react-jsx-source": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/runtime": "^7.7.2",
"@hapi/h2o2": "8.3.2",
"@hapi/hapi": "18.4.0",
"@hapi/inert": "6.0.0",
"@loadable/babel-plugin": "^5.10.3",
"@loadable/component": "^5.10.3",
"@loadable/server": "^5.10.3",
"@loadable/webpack-plugin": "^5.7.1",
"assets-webpack-plugin": "^3.9.6",
"babel-loader": "^8.0.6",
"babel-merge": "^3.0.0",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cache-manager": "^2.9.0",
"cache-manager-redis-store": "^1.5.0",
"clean-webpack-plugin": "^0.1.19",
"dotenv": "^6.0.0",
"emotion": "^9.2.8",
"emotion-server": "^9.2.8",
"error-overlay-webpack-plugin": "^0.1.5",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^7.0.0",
"glamor": "^2.20.40",
"hapi-require-https": "^4.0.0",
"history": "^4.7.2",
"html-react-parser": "^0.13.0",
"http-status": "^1.2.0",
"idx": "^2.4.0",
"isomorphic-fetch": "^2.2.1",
"lodash.isempty": "^4.4.0",
"lodash.isfunction": "^3.0.9",
"lodash.isplainobject": "^4.0.6",
"make-promises-safe": "^1.1.0",
"path-to-regexp": "^2.4.0",
"promis": "^1.1.4",
"ps-tree": "1.2.0",
"react-dev-utils": "5.0.2",
"react-emotion": "^9.2.8",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.12.18",
"redis-parser": "^3.0.0",
"source-map-support": "^0.5.9",
"start-server-webpack-plugin": "^2.2.1",
"stats-webpack-plugin": "^0.7.0",
"throng": "^4.0.0",
"webpack": "^4.17.2",
"webpack-dev-server": "^3.1.8",
"webpack-node-externals": "^1.6.0",
"winston": "^3.1.0"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
}
}