-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "sanity-plugin-minesweeper",
"version": "0.0.3",
"description": "A minesweeper dashboard widget for Sanity Content Studio",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tkalve/minesweeper.git"
},
"keywords": [
"sanity",
"plugin",
"part",
"dashboard",
"widget",
"minesweeper",
"game"
],
"author": "Thomas Kalve",
"license": "MIT",
"bugs": {
"url": "https://github.com/tkalve/minesweeper/issues"
},
"scripts": {
"build": "babel src -d lib --copy-files",
"clean": "rimraf lib",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://github.com/tkalve/minesweeper#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.3.0",
"eslint-config-sanity": "^2.1.4",
"eslint-plugin-react": "^7.1.0",
"rimraf": "^2.6.3"
},
"peerDependencies": {
"prop-types": "^15.6 || ^16",
"react": "^16",
"rxjs": "^6.1.0"
},
"dependencies": {
"@sanity/base": "^0.140.9",
"@sanity/components": "^0.140.9",
"lodash": "^4.17.11"
}
}