This repository has been archived by the owner on May 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.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
{
"name": "@r/mothership",
"version": "0.0.2",
"description": "launch @r/platform projects",
"main": "index.js",
"bin": {
"mothership": "./bin/mothership.js"
},
"scripts": {
"lint": "eslint lib",
"test": "echo \"Error: no test specified\" && exit 1",
"devbuild": "blueprints",
"build": "blueprints --production",
"watch": "blueprints --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajacksified/mothership.git"
},
"keywords": [
"isomorphic",
"react",
"web",
"server"
],
"author": "Jack Lawson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ajacksified/mothership/issues"
},
"homepage": "https://github.com/ajacksified/mothership#readme",
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-plugin-syntax-trailing-function-commas": "^6.5.0",
"babel-plugin-transform-async-to-generator": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-plugin-transform-react-constant-elements": "^6.5.0",
"babel-plugin-transform-react-inline-elements": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"eslint": "^2.8.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "5.0.1"
},
"dependencies": {
"@r/build": "^0.0.5",
"acorn": "^3.1.0",
"acorn-es7": "^0.1.0",
"ast-query": "^1.2.0",
"babel-core": "^6.7.6",
"babel-polyfill": "^6.7.4",
"babel-register": "^6.7.2",
"yargs": "^4.6.0"
}
}