-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "makeen-repo",
"engines": {
"node": "6.x.x"
},
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "yarn run bootstrap",
"bootstrap": "lerna bootstrap",
"clean-modules": "rm -rf node_modules/ && rm -rf packages/*/node_modules && rm -rf packages/*/build",
"clean-setup": "yarn run clean-modules && yarn",
"debug": "babel-node --inspect src/index.js",
"babel-node": "babel-node",
"lint": "eslint .",
"precommit": "lint-staged",
"watch": "babel-node ./packages/makeen-cli/src/scripts/watch.js",
"build": "babel-node ./packages/makeen-cli/src/scripts/build.js",
"publish-packages": "npm run build && lerna publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makeen-project/makeen.git"
},
"author": "Victor Zamfir <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeen-project/makeen/issues"
},
"homepage": "https://github.com/makeen-project/makeen#readme",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.5.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "6.24.1",
"core-decorators": "0.19.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-import-resolver-webpack": "0.8.1",
"eslint-plugin-graphql": "0.8.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.0.1",
"husky": "0.13.4",
"lerna": "^2.0.0",
"lint-staged": "3.5.1",
"nodemon": "1.11.0",
"npm-run-all": "4.0.2",
"prettier": "1.7.0"
}
}