-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1006 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1006 Bytes
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
{
"name": "tinycl",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export && node scripts/prebuild.js",
"start": "next start",
"lint": "npm run eslint && npm run stylelint",
"eslint": "npx eslint '**/*.tsx' '**/*.ts'",
"stylelint": "npx stylelint '**/*.css' '**/*.scss'",
"no-lock": "scripts/noPackageLock.sh",
"test": "npm run build"
},
"dependencies": {
"dotenv": "^16.0.3",
"next": "^13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.58.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^4.33.0",
"@types/node": "^14.14.28",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"stylelint": "^13.10.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.1.5"
}
}