-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.98 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
{
"name": "@anthaathi/solid-styletron",
"version": "0.3.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/anthaathi/solid-styletron"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"preview": "vite preview",
"lint": "eslint \"src/*.{ts,tsx}\"",
"test": "jest"
},
"jest": {
"preset": "solid-jest/preset/browser",
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.ts"
]
},
"types": "./dist/public.d.ts",
"files": [
"dist"
],
"main": "./dist/solid-styletron.umd.cjs",
"module": "./dist/solid-styletron.js",
"exports": {
".": {
"import": "./dist/solid-styletron.js",
"require": "./dist/solid-styletron.umd.cjs"
}
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"babel-jest": "^29.0.1",
"babel-preset-jest": "^29.0.0",
"babel-preset-solid": "^1.5.5",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-solid": "^0.7.3",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.1",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"regenerator-runtime": "0.13.9",
"solid-jest": "^0.2.0",
"solid-js": "^1.5.5",
"solid-testing-library": "0.3.0",
"styletron-engine-atomic": "^1.5.0",
"typescript": "*",
"vite": "^3.1.0",
"vite-plugin-solid": "^2.3.6"
},
"peerDependencies": {
"solid-js": "^1.5.5",
"styletron-engine-atomic": "^1.5.0"
},
"dependencies": {},
"prettier": {
"quoteProps": "consistent",
"semi": true,
"singleQuote": true
}
}