-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "template",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"platform": "browser",
"engines": {
"node": ">=14"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./*": "./dist/components/*/index.js",
"./styles": "./dist/bundle.css",
"./styles/*": "./dist/components/*/index.css"
},
"scripts": {
"export": "tsmodule build",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"pretest": "pnpm build",
"test": "ava",
"prepublishOnly": "pnpm test && pnpm export"
},
"devDependencies": {
"@tsmodule/react": "^12.0.0",
"@tsmodule/tsmodule": "^44.7.0",
"@types/node": "^20.4.5",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"autoprefixer": "^10.4.14",
"ava": "^5.3.1",
"cssnano": "^6.0.1",
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.12",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.0",
"next": "^13.4.12",
"pkg": "^5.8.1",
"postcss": "^8.4.27",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
},
"style": "dist/bundle.css",
"dependencies": {
"nextjs-edge-cors": "^0.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}