-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 963 Bytes
/
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
{
"name": "db.js",
"version": "0.1.0",
"main": "db.ts",
"scripts": {
"start": "ts-node db.ts ./data.db",
"start:doc": "next dev",
"build:doc": "next build",
"fmt": "pretty-quick --pattern \"**/*.*(js|ts|tsx|md)\" --ignore-path .gitignore",
"test": "vitest",
"test:watch": "vitest -w"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-container": "^2.0.5",
"@types/node": "^17.0.10",
"@types/react": "^17.0.38",
"clsx": "^1.1.1",
"markdown-it": "^12.3.2",
"markdown-it-container": "^3.0.0",
"next": "^12.0.8",
"preact": "^10.6.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"sass": "^1.49.7",
"shiki": "^0.10.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"vitest": "^0.5.0",
"windicss": "^3.4.3",
"windicss-webpack-plugin": "^1.6.2"
}
}