forked from aerogear/create-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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
{
"license": "MIT",
"author": {
"name": "Lucas Bento",
"email": "[email protected]",
"url": "https://github.com/lucasbento"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-rewire": "^1.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chokidar": "^1.6.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"fs-extra": "^1.0.0",
"jest": "^18.0.0",
"jest-cli": "^18.0.0",
"lerna": "2.0.0-beta.31",
"lerna-changelog": "^0.2.3",
"rimraf": "^2.5.4",
"yeoman-assert": "^2.2.2",
"yeoman-test": "^1.6.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna exec -- npm run build",
"clean": "lerna clean",
"lint": "eslint packages/*/src/**/*.js packages/*/__tests__ ",
"prepublish": "npm run build",
"test": "jest --runInBand --config jest.json",
"watch": "lerna exec -- npm run watch"
}
}