-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "react-patterns-workshop",
"version": "1.0.0",
"description": "React Patterns Workshop",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "husky",
"slides:start": "slidev --open",
"slides:build": "slidev build",
"slides:export": "slidev export"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/react-patterns-workshop.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nearform/react-patterns-workshop/issues"
},
"homepage": "https://github.com/nearform/react-patterns-workshop#readme",
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@slidev/cli": "^51.3.0",
"eslint": "^9.21.0",
"eslint-config-next": "15.1.7",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@next/bundle-analyzer": "^15.1.7",
"clsx": "^2.1.1",
"modern-normalize": "^3.0.1",
"next": "^15.1.7",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"slidev-theme-nearform": "^2.0.0"
}
}