-
Notifications
You must be signed in to change notification settings - Fork 435
/
package.json
81 lines (81 loc) · 2.1 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
{
"name": "@sanity/server",
"version": "0.141.5",
"description": "Webserver dedicated to serving Sanity, allowing a smooth development experience",
"main": "lib/server.js",
"scripts": {
"clean": "rimraf lib",
"start": "node bin/sanity-server.js",
"start-dev": "node bin/sanity-server.js --dev"
},
"bin": {
"sanity-server": "./bin/sanity-server.js"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-io/sanity.git"
},
"keywords": [
"sanity",
"cms",
"headless",
"realtime",
"content",
"server",
"webserver"
],
"author": "Sanity.io <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sanity-io/sanity/issues"
},
"homepage": "https://www.sanity.io/",
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@sanity/css-loader": "^0.28.12",
"@sanity/resolver": "0.141.5",
"@sanity/webpack-integration": "0.141.5",
"@sanity/webpack-loader": "0.141.5",
"babel-loader": "^8.0.6",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"in-publish": "^2.0.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"normalize.css": "^5.0.0",
"postcss-loader": "^2.0.6",
"react-hot-loader": "4.3.8",
"require-uncached": "^1.0.3",
"resolve": "^1.3.3",
"resolve-from": "^4.0.0",
"rxjs": "^6.1.0",
"style-loader": "^0.20.1",
"symbol-observable": "^1.2.0",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^2.0.5",
"webpack-hot-middleware": "^2.17.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.0.5",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"prop-types": "^15.6 || ^16",
"react": "^16.2",
"react-dom": "^16.2"
}
}