This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.76 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
{
"name": "root",
"private": true,
"scripts": {
"build:all": "lerna exec --parallel -- babel src -d . --ignore /__tests__",
"clear:all": "lerna exec --parallel -- rimraf index.js components styles",
"publish:all": "npm-run-all -s build:all && lerna publish",
"lint": "eslint packages/*/src/**/*.js",
"stylelint": "stylelint packages/**/src/styles/*.js",
"prebootstrap": "yarn",
"test": "npm-run-all -s lint stylelint jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "7.0.0-rc.1",
"@babel/core": "7.0.0-rc.1",
"@babel/plugin-proposal-class-properties": "7.0.0-rc.1",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-rc.1",
"@babel/preset-env": "7.0.0-rc.1",
"@babel/preset-react": "7.0.0-rc.1",
"babel-eslint": "^8.2.6",
"eslint": "4.1.1",
"eslint-config-react-app": "2.1.0",
"eslint-loader": "2.0.0",
"eslint-plugin-babel": "5.1.0",
"eslint-plugin-emotion": "^9.1.0",
"eslint-plugin-flowtype": "2.34.1",
"eslint-plugin-import": "2.6.0",
"eslint-plugin-jest": "21.17.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"jest": "23.2.0",
"jest-emotion": "^9.2.4",
"jsdom": "^11.11.0",
"lerna": "^3.0.5",
"npm-run-all": "4.1.3",
"prettier": "1.13.7",
"prop-types": "^15.6.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-testing-library": "^4.1.2",
"rimraf": "^2.6.2",
"stylelint": "9.3.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1"
},
"dependencies": {
"github-slugger": "^1.2.0",
"typeface-merriweather-sans": "^0.0.54"
},
"workspaces": [
"packages/*"
]
}