-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
101 lines (101 loc) · 2.4 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": "style9",
"version": "0.18.2",
"description": "CSS-in-JS compiler",
"author": "Johan Holmerin <johan@holmer.in>",
"license": "MIT",
"main": "./index.mjs",
"repository": {
"type": "git",
"url": "https://github.com/johanholmerin/style9.git"
},
"engines": {
"node": ">=14"
},
"types": "./types/index.d.ts",
"typesVersions": {
"<4.4": {
"*": [
"./types/ts4.3/index.d.ts"
]
}
},
"keywords": [
"styles",
"css",
"css-in-js",
"babel",
"babel-plugin",
"gatsby",
"gatsby-plugin",
"next",
"nextjs",
"nextjs-plugin",
"webpack",
"rollup",
"rollup-plugin"
],
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/types": "^7.8.3",
"@rollup/pluginutils": "^3.0.4",
"csstype": "^3.0.6",
"fast-json-stable-stringify": "^2.1.0",
"inline-style-expand-shorthand": "1.6.0",
"json5": "^2.2.3",
"known-css-properties": "^0.19.0",
"loader-utils": "^3.2.1",
"mini-css-extract-plugin": "^1.6.0",
"murmurhash-js": "^1.0.0",
"postcss": "^8.4.7",
"postcss-discard-duplicates": "^5.1.0",
"postcss-selector-parser": "^6.0.2",
"sort-css-media-queries": "^2.0.4",
"webpack-sources": "^2.2.0",
"webpack-virtual-modules": "^0.4.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@stryker-mutator/core": "^5.0.1",
"@stryker-mutator/jest-runner": "^5.0.1",
"babel-jest": "^26.1.0",
"babel-plugin-tester": "^10.0.0",
"dtslint": "^4.0.7",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"rollup": "^1.29.0",
"typescript": "^4.4.2",
"vite": "^4.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"test": "jest",
"test:types": "dtslint types",
"test:mutation": "stryker run",
"test:examples": "./scripts/test-examples.sh",
"lint": "eslint \"**/*.js\" --fix",
"lint:check": "eslint \"**/*.js\"",
"format": "prettier \"**/*.{js,ts}\" --write",
"format:check": "prettier \"**/*.{js,ts}\" --check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"npm run format"
],
"*.ts": [
"npm run format"
]
}
}