-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.26 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.26 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
58
59
{
"name": "conference-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest",
"lint.es": "next lint",
"lint.style": "stylelint \"**/*.scss\"",
"lint.commit": "commitlint --from origin/main",
"lint.staged": "lint-staged",
"prettier": "prettier --write ./src/",
"prettier.ci": "prettier --check ./src/",
"prepare": "husky install",
"data.schema.slots": "ts-json-schema-generator -p 'src/app/_schemas/slots.ts' -t 'Slots' -o 'src/schemas/data/slots.schema.json'",
"data.schema.speakers": "ts-json-schema-generator -p 'src/app/_schemas/speakers.ts' -t 'Speakers' -o 'src/schemas/data/speakers.schema.json'",
"data.schema.sponsors": "ts-json-schema-generator -p 'src/app/_schemas/sponsors.ts' -t 'Sponsors' -o 'src/schemas/data/sponsors.schema.json'",
"data.schema.talks": "ts-json-schema-generator -p 'src/app/_schemas/talks.ts' -t 'Talks' -o 'src/schemas/data/talks.schema.json'",
"translation.schema.home": "ts-json-schema-generator -p 'src/app/(home)/homeTranslation.ts' -t 'HomeTranslation' -o 'src/schemas/transation/home.schema.json'"
},
"dependencies": {
"bootstrap": "^5.3.2",
"dotenv": "^16.4.2",
"next": "14.1.0",
"react": "18.2.0",
"react-bootstrap": "^2.10.1",
"react-dom": "18.2.0",
"react-markdown": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/node": "20.11.17",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vitest": "^0.3.22",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"sass": "^1.70.0",
"standard-version": "^9.5.0",
"stylelint": "^16.2.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-scss": "^6.1.0",
"ts-json-schema-generator": "^1.5.0",
"typescript": "5.3.3",
"vitest": "^1.2.2"
}
}