-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
84 lines (84 loc) · 2.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "project-name",
"version": "0.0.0",
"description": "{project-name} web app",
"author": "MOXY <hello@moxy.studio>",
"private": true,
"license": "UNLICENSED",
"keywords": [
"www",
"next"
],
"repository": {
"type": "git",
"url": "git@github.com:{project-org}/{project-name}"
},
"engines": {
"node": ">= 12"
},
"browserslist": [
"extends browserslist-config-google/modern"
],
"scripts": {
"dev": "cross-env next",
"build": "next build",
"start": "cross-env NODE_ENV=production next start",
"test": "jest",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint --ignore-path .gitignore .",
"lint:stylelint": "stylelint --ignore-path .gitignore .",
"docs": "npm run start --prefix docusaurus -- --port 4000"
},
"dependencies": {
"@moxy/next-common-files": "^2.0.0",
"@moxy/next-compile-node-modules": "^2.1.1",
"@moxy/next-intl": "^3.1.0",
"@moxy/next-layout": "^2.2.3",
"@moxy/next-router-scroll": "^2.2.0",
"@moxy/next-seo": "^1.0.0",
"@moxy/next-sitemaps": "^3.3.0",
"@moxy/next-webpack-oneof": "^1.1.1",
"@moxy/react-keyboard-only-outlines": "^1.0.2",
"@moxy/react-page-swapper": "^1.1.2",
"classnames": "^2.2.6",
"cross-env": "^7.0.3",
"env-var": "^7.0.0",
"hoist-non-react-statics": "^3.3.2",
"next": "^11.0.1",
"next-compose-plugins": "^2.2.1",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.13.5",
"react-transition-group": "^4.4.1",
"use-local-storage-state": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@commitlint/config-conventional": "^12.0.1",
"@moxy/babel-preset": "^3.2.5",
"@moxy/eslint-config-babel": "^13.1.0",
"@moxy/eslint-config-base": "^13.1.0",
"@moxy/eslint-config-jest": "^13.1.0",
"@moxy/eslint-config-react": "^13.1.0",
"@moxy/eslint-config-react-web-a11y": "^13.1.0",
"@moxy/jest-config-base": "^6.0.0",
"@moxy/jest-config-testing-library": "^6.0.0",
"@moxy/jest-config-web": "^6.0.0",
"@moxy/postcss-preset": "^4.5.2",
"@moxy/stylelint-config": "^9.0.0",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.0.10",
"commitlint": "^12.1.2",
"eslint": "^7.22.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"standard-version": "^9.1.1",
"stylelint": "^13.12.0"
}
}