-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) Β· 2.94 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
86
87
88
89
90
91
{
"name": "dynamic-styles",
"version": "0.0.5",
"private": true,
"description": "Dynamic Css-in-Js styles engine, based on Emotion",
"license": "MIT",
"homepage": "https://github.com/bennodev19/dynamic-styles",
"author": "BennoDev <[email protected]>",
"keywords": [
"react",
"emotion",
"emotionjs",
"styles"
],
"syncDir": "dist",
"scripts": {
"build": "lerna run build",
"prepare": "lerna run prepare",
"release:prepare": "yarn run test",
"_release": "yarn run release:prepare && esno scripts/release",
"release:patch": "yarn run _release patch",
"release:minor": "yarn run _release minor",
"release:major": "yarn run _release major",
"bootstrap": "lerna bootstrap",
"watch:native": "cd packages/native && yarn run watch",
"watch:react": "cd packages/react && yarn run watch",
"test": "jest --passWithNoTests",
"dev:publish": "lerna run build && lerna run dev:publish",
"dev:push": "lerna run build && lerna run dev:push",
"install:packages": "lerna exec yarn install",
"install:packages:clean": "lerna run install:clean",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,ts}\"",
"lint": "eslint --cache \"**/*.{js,jsx,ts,tsx}\"",
"pack": "lerna run prepare && lerna run pack",
"pack:native": "cd packages/core && yarn run prepare && yarn run pack",
"pack:react": "cd packages/react && yarn run prepare && yarn run pack"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@emotion/cache": "^11.5.0",
"@emotion/native": "^11.0.0",
"@emotion/react": "^11.6.0",
"@emotion/serialize": "^1.0.2",
"@emotion/utils": "^1.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"chalk": "^4.1.2",
"esbuild": "^0.13.13",
"eslint": "^8.2.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"esno": "^0.12.1",
"execa": "^6.0.0",
"fs-extra": "^10.0.0",
"jest": "^27.3.1",
"lerna": "^4.0.0",
"new-github-release-url": "^2.0.0",
"open": "^8.4.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "^0.66.3",
"rollup": "^2.60.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-esbuild": "^4.6.0",
"shx": "^0.3.3",
"simple-git": "^2.47.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"yargs": "^17.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/bennodev19/dynamic-styles"
},
"workspaces": [
"packages/*"
]
}