-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.8 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "babajka-frontend",
"version": "2.1.1",
"description": "Next.js & React app",
"engines": {
"node": "~15.4",
"npm": "~7.2"
},
"scripts": {
"start": "npm run dev",
"start:prod": "npm run build && cross-env NODE_ENV=production node server.js",
"start:prod:remote": "node server.js",
"dev": "npm run reset-cache && node server.js --port=3000",
"local-backend": "npm run dev -- --backend-url=http://localhost:8080",
"deploy-dev-from-local": "bash bin/deploy/deploy-from-local.sh dev",
"deploy-prod-from-local": "bash bin/deploy/deploy-from-local.sh prod",
"build": "make _pre_build && cross-env NODE_ENV=production next build",
"lint": "npm run prettify && eslint '{!(.next*|*static*|node_modules*), }/**/*.js' --fix && npm run stylelint",
"stylelint": "stylelint '{!(.next*|*static*|node_modules*), }/**/*.scss' --fix",
"prettier": "prettier --write",
"prettify": "npm run prettier '{!(.next*|*static*|lib), }/**/*.{js,md,scss}' '*.md' '*.js'",
"update-dict": "bash bin/fetch.sh dict",
"update-team": "bash bin/fetch.sh team",
"reset-cache": "rm -rf node_modules/.cache && rm -rf .next/",
"fetch-data": "npm run update-dict && npm run update-team",
"postinstall": "npm run fetch-data",
"semantic-release": "semantic-release",
"size-build": "npm run reset-cache && make build",
"size-limit": "size-limit",
"size": "npm run size-build && size-limit",
"gds": "github-deploy-status -u babajka -p babajka-frontend",
"analyze": "cross-env ANALYZE=true make build"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.1",
"@next/bundle-analyzer": "^10.0.3",
"bem-css-modules": "^1.4.2",
"classnames": "^2.2.6",
"command-line-args": "^4.0.7",
"cookie-parser": "^1.4.4",
"date-fns": "^2.13.0",
"env-ci": "^3.2.0",
"express": "^4.17.1",
"google-spreadsheet": "^3.0.13",
"http-proxy-middleware": "^0.20.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.19",
"next": "^10.0.3",
"next-compose-plugins": "^2.2.1",
"next-routes": "^1.4.2",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"querystring": "^0.2.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-ga": "^2.5.7",
"react-id-swiper": "^3.0.0",
"react-scroll-up": "^1.3.3",
"sass": "^1.26.2",
"swiper": "^5.3.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/babajka/babajka-frontend.git"
},
"author": "babajka team <github.com/babajka>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/babajka/babajka-frontend/issues"
},
"homepage": "https://github.com/babajka/babajka-frontend#readme",
"main": "index.js",
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/exec": "^3.3.2",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.13",
"@size-limit/preset-app": "^4.9.1",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"github-deploy-status": "^1.4.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^2.0.1",
"semantic-release": "^15.13.19",
"size-limit": "^4.9.1",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.16.0"
},
"moduleRoots": [
"."
]
}