forked from stitchesjs/stitches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 3.38 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"$schema": "./.vscode/package.schema.json",
"name": "stitches",
"type": "module",
"license": "MIT",
"contributors": [
"Pedro Duarte <[email protected]>",
"Abdulhadi Alhallak <[email protected]>",
"Jonathan Neal <[email protected]>"
],
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "node .bin/build.js",
"build:watch": "node .bin/build.js --watch",
"lint": "node .bin/lint.js",
"lint:esm": "node .bin/lint-esm.js",
"lint:pkg": "node .bin/lint-pkg.js",
"lint:tsc": "node .bin/lint-tsc.js",
"prerelease": "npm run build && npm run test",
"release": "lerna publish",
"release:canary": "npm run prerelease && lerna publish --dist-tag canary",
"release:pack": "npm run prerelease && lerna exec -- npm pack",
"postinstall": "lerna bootstrap --use-workspaces",
"test": "node .bin/test.js",
"test:coverage": "node .bin/test-coverage.js .bin/test.js",
"test:watch": "node .bin/test.js --watch"
},
"workspaces": [
"packages/*",
"play"
],
"dependencies": {
"@skypack/package-check": "^0.2.2",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"esbuild": "0.11.10",
"eslint": "7.24.0",
"lerna": "4.0.0",
"nodemon": "2.0.7",
"react": "17.0.2",
"react-test-renderer": "17.0.2",
"terser": "5.6.1",
"typescript": "4.2.4"
},
"browserslist": [
"last 1 chrome versions",
"last 1 firefox versions",
"last 1 safari versions",
"maintained node versions"
],
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"describe": false,
"expect": false,
"test": false
},
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"rules": {
"semi": [
"error",
"never"
]
},
"overrides": [
{
"files": "*.ts",
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"@typescript-eslint/ban-types": [
"error",
{
"extendDefaults": true,
"types": {
"{}": false
}
}
],
"@typescript-eslint/no-explicit-any": "off"
}
}
]
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 240,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": true,
"overrides": [
{
"files": [
"*.json",
"*.md",
".prettierrc",
"*.yml"
],
"options": {
"useTabs": false
}
}
]
},
"private": true
}