-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
69 lines (69 loc) · 2.25 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
{
"name": "@gmdev/lerna-starter",
"version": "0.0.1",
"description": "@gmdev is my dummy organisation to show scoped packages",
"scripts": {
"storybook": "NODE_ENV=development start-storybook -p 9001",
"prestart": "npm install && npm run build",
"start": "npm-run-all --parallel storybook build:watch",
"test": "jest --coverage",
"test:watch": "jest --watch",
"bootstrap": "lerna bootstrap",
"build": "lerna exec --parallel -- babel src -d dist --ignore src/__tests__/,src/__stories__/,src/__wireframe__/**",
"build:watch": "npm run build -- --watch",
"export-static-storybook": "build-storybook -c .storybook -o .out",
"publish-packages": "lerna publish",
"prepublish-packages": "npm run build",
"precommit": "npm run test",
"postinstall": "npm run bootstrap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garmeeh/lerna-starter.git"
},
"author": "Gary Meehan",
"license": "MIT",
"bugs": {
"url": "https://github.com/garmeeh/lerna-starter/issues"
},
"homepage": "https://github.com/garmeeh/lerna-starter/#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.1.11",
"@storybook/react": "^4.1.11",
"all-contributors-cli": "^5.10.2",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-loader": "^8.0.5",
"eslint": "^5.12.1",
"eslint-config-react-app": "^3.0.6",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"glob-loader": "^0.3.0",
"jest": "^24.0.0",
"jest-dom": "^3.0.1",
"lerna": "^3.10.7",
"lint-staged": "^8.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-testing-library": "^5.4.4",
"styled-components": "^4.1.3",
"styled-map": "^3.2.0-rc.1"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
}
}