-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.86 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.86 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
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
{
"name": "web-handbook",
"version": "1.0.0",
"description": "Web Handbook - Cправочник по html, css и другим веб технологиям.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint-js": "eslint ./src/ --ext .js,.jsx,.ts,.tsx",
"lint-js-fix": "eslint ./src/ --ext .js,.jsx,.ts,.tsx --fix",
"lint-css": "stylelint ./src/**/*.[s]css",
"lint-css-fix": "stylelint ./src/**/*.[s]css --fix",
"lint": "yarn lint-css && yarn lint-js",
"install:dependencies:prod": "yarn install --production",
"precommit": "yarn lint",
"clear": "rm -rf ./.build",
"build:client:dev": "alfa-code-scripts build --mode=development --type=client",
"build:client:dev:watch": "alfa-code-scripts build --mode=development --type=client --watch=true",
"build:server:dev": "alfa-code-scripts build --mode=development --type=server",
"build:server:dev:watch": "alfa-code-scripts build --mode=development --type=server --watch=true",
"build:dev:watch": "alfa-code-scripts build --mode=development --type=client,server --watch=true",
"build:prod:watch": "alfa-code-scripts build --mode=production --type=client,server --watch=true",
"build:client:prod": "alfa-code-scripts build --mode=production --type=client",
"build:server:prod": "alfa-code-scripts build --mode=production --type=server",
"build:dev": "yarn clear && yarn build:client:dev && yarn build:server:dev",
"build:prod": "yarn clear && yarn build:client:prod && yarn build:server:prod",
"start:server:nodemon": "NODE_ENV=development nodemon --inspect ./.build/server.js --watch ./.build/server.js",
"local-development": "yarn build:dev && yarn start:server:nodemon && yarn build:dev:watch",
"npm-check": "npx npm-check -i Components -i Assets -i Pages -i Src"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com/alfa-code/web-handbook.git"
},
"author": "hydrock",
"license": "ISC",
"bugs": {
"url": "https://github.com/alfa-code/web-handbook/issues"
},
"homepage": "https://github.com/alfa-code/web-handbook#readme",
"dependencies": {
"@alfa-code/alfa-code-scripts": "^1.0.9",
"@hapi/boom": "^9.1.3",
"@hapi/hapi": "^20.0.1",
"@hapi/hoek": "^9.1.0",
"@hapi/inert": "^6.0.2",
"@hapi/vision": "^6.0.1",
"@loadable/component": "^5.15.0",
"axios": "^0.21.0",
"connected-react-router": "^6.8.0",
"cuid": "^2.1.8",
"formik": "^2.2.3",
"hapi-error": "^2.2.0",
"history": "^4.10.1",
"html-react-parser": "^1.2.7",
"include-media": "^1.4.9",
"joi": "17.x",
"lockr": "^0.8.5",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"normalize.css": "^8.0.1",
"os": "^0.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-jsx-parser": "^1.28.4",
"react-loading-skeleton": "^2.1.1",
"react-redux": "^7.2.1",
"react-refractor": "^2.1.4",
"react-router-dom": "^5.2.0",
"react-toastify": "^7.0.4",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"typesafe-actions": "^5.1.0",
"url-join": "^4.0.1",
"utility-types": "^3.10.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@alfa-code/alfa-code-presets": "^1.1.6",
"@types/hapi__hapi": "^20.0.2",
"@types/jest": "^26.0.15",
"@types/node": "^15.12.5",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@types/react-syntax-highlighter": "^13.5.0",
"eslint-plugin-jsx-a11y": "^6.4.1"
}
}