-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
85 lines (85 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"private": true,
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"files": ["src", "dist"],
"author": "mitchellhamilton <[email protected]>",
"license": "MIT",
"scripts": {
"test:watch": "jest --watch",
"test:debug":
"node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"test":
"npm run build && npm-run-all -p flow:check lint coverage test:dist",
"jest": "jest --coverage",
"test:size": "npm-run-all build bundlesize",
"build": "node scripts/build",
"build:watch": "node scripts/build/watch.js",
"test:dist": "jest -c jest.dist.js --ci --runInBand",
"lint": "eslint .",
"coverage": "jest --coverage --ci --runInBand",
"build:example": "lerna exec --scope example npm run build",
"start:example": "lerna exec --scope example npm run start",
"babel": "lerna run babel",
"flow:check": "flow check",
"release": "yarn build && lerna publish"
},
"dependencies": {
"babel-plugin-preval": "^1.5.0",
"emotion-server": "^9.1.2",
"jest-watch-typeahead": "^0.1.0",
"stylis": "^3.2.11"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-external-helpers": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-flow": "^7.0.0-beta.40",
"@babel/preset-react": "^7.0.0-beta.40",
"@babel/preset-stage-0": "^7.0.0-beta.40",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^23.0.1",
"babel-plugin-closure-elimination": "^1.3.0",
"babel-plugin-codegen": "^1.2.1",
"babel-plugin-macros": "^2.1.0",
"bundlesize": "^0.17.0",
"codecov": "^2.3.0",
"css": "^2.2.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint": "^4.3.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.75.0",
"jest": "^23.1.0",
"jest-environment-jsdom": "^23.1.0",
"jest-in-case": "^1.0.2",
"jest-serializer-html": "^5.0.0",
"lerna": "^2.1.0",
"lerna-alias": "^3.0.1",
"module-alias": "^2.0.3",
"npm-run-all": "^4.0.2",
"prettier": "^1.12.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-test-renderer": "^16.3.0",
"stylis-rule-sheet": "^0.0.10"
},
"workspaces": ["packages/*", "examples/*", "scripts/*"],
"bundlesize": [
{
"path": "./packages/*/dist/index.min.js",
"maxSize": "6kB"
}
]
}