-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.45 KB
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
{
"name": "next-template",
"version": "2.0.0",
"private": true,
"description": "A library with Next.js, typescript and SCSS",
"author": "Jean Lima <jean.car.liima@gmail.com>",
"license": "MIT",
"keywords": [
"next",
"next.js",
"react",
"sass",
"scss",
"typescript",
"eslint",
"stylelint",
"template"
],
"bugs": {
"url": "https://github.com/JeanLiima/next-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeanLiima/next-template.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext js,jsx,ts,tsx",
"style-lint": "stylelint \"**/*.scss\"",
"fix-lints": "stylelint \"**/*.scss\" --fix && eslint --ext js,jsx,ts,tsx --fix"
},
"dependencies": {
"axios": "^1.1.3",
"classnames": "^2.3.2",
"jquery": "^3.6.1",
"next": "^13.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "18.7.15",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-next": "^13.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-simple-import-sort": "^8.0.0",
"sass": "^1.54.8",
"stylelint": "^14.14.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.8.4"
}
}