-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
55
56
{
"name": "nextjs-template",
"description": "Full-featured template for JAMstack websites using next.js",
"repository": "github:jsulpis/nextjs-template",
"license": "MIT",
"author": "Julien Sulpis",
"scripts": {
"dev": "next",
"build": "next build",
"export": "next export",
"start": "next start",
"clean": "rm -rf .next out",
"lint": "next lint",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"analyze": "ANALYZE=true yarn build",
"prepare": "husky install",
"pre-commit": "pretty-quick --staged"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"isomorphic-unfetch": "^3.1.0",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^2.2.9"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.1.2",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.3.4",
"babel-core": "^6.26.3",
"babel-jest": "^27.1.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"husky": "^7.0.2",
"jest": "^27.1.0",
"next-fonts": "^1.5.1",
"postcss": "^8.3.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"sass": "^1.39.0",
"typescript": "^4.4.2"
}
}