-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.61 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": "solid-realworld",
"version": "1.0.0",
"homepage": "https://stevej2608.github.io/solid-realworld/",
"author": "AR10",
"scripts": {
"dev": "vite --port 3000",
"build": "npm run clean && vite build",
"serve": "vite preview",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"clean": "rm -rf ./public/*",
"prettier": "prettier --write src",
"test": "vitest run",
"genapi": "swagger-typescript-api --type-prefix 'I' -o src/api -p https://raw.githubusercontent.com/gothinkster/realworld/db2aef2c70e1be92524572d63269c3fc4d6d8a16/api/openapi.yml"
},
"license": "MIT",
"devDependencies": {
"@solidjs/testing-library": "0.7.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/node": "18.15.13",
"@types/sprintf-js": "^1.1.2",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"autoprefixer": "10.4.14",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jsdom": "^22.1.0",
"msw": "1.2.1",
"prettier": "^2.8.8",
"swagger-typescript-api": "^12.0.4",
"types": "^0.1.1",
"typescript": "5.0.4",
"vite": "4.3.1",
"vite-plugin-solid": "2.7.0",
"vitest": "0.31.0",
"yargs": "^17.7.2"
},
"dependencies": {
"@holonix/browser-logger": "^0.0.5",
"@types/dompurify": "^3.0.2",
"@types/marked": "^5.0.0",
"classnames": "^2.3.2",
"dompurify": "^3.0.3",
"marked": "^5.1.0",
"solid-js": "1.7.3",
"sprintf-js": "^1.1.2"
}
}