-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "@css-everything/render",
"version": "0.1.1",
"main": "src/index.ts",
"repository": "https://github.com/phenax/css-everything",
"author": "Akshay Nair <phenax5@gmail.com>",
"license": "MIT",
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node esbuild.js",
"serve": "serve -p 3000 .",
"format": "prettier --write './{src,tests}/**/*.{ts,html,css}'",
"lint": "eslint ./src",
"fix": "yarn lint --fix && yarn format",
"pub:patch": "yarn lint && yarn build && yarn publish --access=public --patch",
"test": "jest"
},
"devDependencies": {
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.17.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"esbuild": "^0.18.17",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"prettier": "^3.0.1",
"serve": "^14.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {}
}