-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "portfolio",
"version": "1.12.0",
"description": "My personal portfolio project.",
"repository": "git@github.com:matthieu-locussol/portfolio.git",
"author": "Matthieu Locussol <dev.matthieu.locussol@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "yarn run next dev",
"build": "yarn run tests:ci && yarn run next build",
"start": "yarn run next start",
"export": "yarn run next export",
"check:lint": "biome check *",
"tests": "jest",
"tests:ci": "jest --ci",
"release": "standard-version -a"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.3.0",
"@mui/material": "^5.3.0",
"next": "^12.0.9",
"next-pwa": "^5.4.4",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"tsc-files": "^1.1.3",
"typescript": "^4.5.5"
}
}