-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
101 lines (101 loc) · 2.97 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
92
93
94
95
96
97
98
99
100
101
{
"name": "@nozbe/zacs",
"version": "2.1.1",
"description": "Zero Abstraction Cost Styling (for React DOM and React Native)",
"main": "src/index.js",
"scripts": {
"test": "jest",
"flow": "flow check --max-warnings=0 --color=always",
"eslint": "eslint ./src -c ./.eslintrc.yml --cache --cache-location ./.cache/.eslintcache",
"playground": "chokidar \"src/babel/**/*.js\" --initial -c \"node src/babel/__playground__/index.js\"",
"playground:native": "chokidar \"src/babel/**/*.js\" --initial -c \"node src/babel/__playground__/index.js --native\"",
"prettier": "prettier --config ./.prettierrc --write \"./src/**/*.js\"",
"ci:check": "concurrently -n 'test,eslint,flow' -c 'auto' 'npm run test' 'npm run eslint' 'npm run flow' --kill-others-on-fail",
"ci": "npm run ci:check"
},
"files": [
"src/index.js",
"src/index.js.flow",
"src/ZACS_RN_View.js",
"src/ZACS_RN_Text.js",
"src/babel/*.js",
"babel.js",
"src/webpack/loader.js",
"src/flow/*.js",
"src/flow/platform/*.js",
"loader.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Nozbe/zacs.git"
},
"keywords": [
"babel",
"babel plugin",
"styled components",
"react",
"react native",
"css",
"styles",
"styling",
"zero runtime"
],
"author": {
"name": "Radek Pietruszewski",
"email": "[email protected]",
"url": "https://radex.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Nozbe/zacs/issues"
},
"homepage": "https://github.com/Nozbe/zacs#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@babel/generator": "7.21.1",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/types": "^7.21.2",
"ajv-errors": "^1.0.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"chalk": "^4.1.0",
"chokidar-cli": "^3.0.0",
"cli-highlight": "^2.1.11",
"concurrently": "^7.6.0",
"css-loader": "^4.3.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.16.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"flow-bin": "0.201.0",
"jest": "^29",
"jest-specific-snapshot": "^8.0.0",
"memfs": "^3.2.0",
"mini-css-extract-plugin": "^0.12.0",
"patch-package": "^6.5.1",
"prettier": "^2.8.8",
"schema-utils": "^1.0.0",
"style-loader": "^1.3.0",
"webpack": "^4.44.2"
},
"dependencies": {
"@babel/core": "^7.10",
"@babel/plugin-syntax-jsx": "^7.10",
"@react-native/normalize-colors": "^0.72.0",
"loader-utils": "^2.0.0",
"mkdirp": "^1.0.4",
"normalize-path": "^3.0.0"
}
}