-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "react-system",
"version": "0.20.2",
"description": "Flex box system for react based on emotion",
"main": "dist/system.cjs.js",
"module": "dist/system.esm.js",
"types": "src/system.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"next": "BABEL_ENV=next next",
"types": "echo \"// @flow\n\nexport * from '../src/system.js';\" > dist/system.cjs.js.flow",
"build": "rm -rf dist && rollup -c && yarn types",
"test": "jest && yarn flow check",
"prepublish": "yarn build"
},
"jest": {
"snapshotSerializers": [
"@emotion/jest/serializer"
]
},
"repository": "https://github.com/TrySound/react-system",
"author": "Bogdan Chadkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-flow": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@emotion/css": "^11.0.0",
"@emotion/jest": "^11.0.0",
"@emotion/server": "^11.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@types/react": "^17.0.31",
"flow-bin": "^0.137.0",
"jest": "^26.6.3",
"next": "^9.3.4",
"prettier": "^2.1.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"rollup": "^2.33.1",
"rollup-plugin-size-snapshot": "^0.12.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"react": "^16.6.0 || ^17.0.0"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@emotion/react": "^11.0.0",
"csstype": "^3.0.4",
"facepaint": "^1.2.1"
}
}