-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "flcss",
"version": "2.6.0",
"type": "module",
"description": "A bleeding-edge CSS-in-JS library",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prepublishOnly": "yarn build",
"dev": "tsc -p tsconfig.json --watch",
"build": "tsc -p tsconfig.json --removeComments",
"might-tests": "docker compose run web might",
"unit-tests": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ker0olos/flcss.git"
},
"keywords": [
"react",
"css-in-js",
"css"
],
"author": "Kerolos Zaki",
"license": "MIT",
"bugs": {
"url": "https://github.com/ker0olos/flcss/issues"
},
"homepage": "https://github.com/ker0olos/flcss#readme",
"dependencies": {
"construct-style-sheets-polyfill": "^3.1.0",
"csstype": "^3.0.10"
},
"optionalDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^27.5.0",
"might-cli": "4.0.2",
"might-ui": "^1.1.8",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"vite": "^2.7.13"
}
}