-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 3.4 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
{
"name": "2022_2_bugoverload",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"prebuild": "node prebuild.js",
"start": "npm run watch",
"back": "node __mocks__/server.js",
"dev": "cross-env NODE_ENV=development cross-env DOMAIN_DEPLOY=localhost:3000 webpack --mode development && npm run prebuild",
"prod": "cross-env NODE_ENV=production cross-env DOMAIN_DEPLOY=movie-gate.ru webpack --mode production && npm run prebuild",
"prod-debug": "cross-env DOMAIN_DEPLOY=movie-gate.ru webpack --mode development && npm run prebuild",
"prod-debug-w": "cross-env DOMAIN_DEPLOY=movie-gate.ru webpack --mode development --watch",
"stand": "npm run dev && npm run back 3000",
"deploy": "npm run prod && npm run back 80",
"dev-deploy": "cross-env DOMAIN_DEPLOY=movie-gate.ru webpack --mode development && npm run back 80",
"watch": "cross-env DOMAIN_DEPLOY=localhost:3000 webpack --mode development --watch",
"stats": "cross-env STATS=stats webpack --mode development --json > stats.json && webpack-bundle-analyzer stats.json",
"check": "npm run lint && npm run stylelint",
"lint": "eslint --cache --ext .js src --fix",
"stylelint": "stylelint '**/*{.css,.scss}' --allow-empty-input",
"stylelint:fix": "stylelint '**/*{.css,.scss}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontend-park-mail-ru/2022_2_BugOverload.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/frontend-park-mail-ru/2022_2_BugOverload/issues"
},
"homepage": "https://github.com/frontend-park-mail-ru/2022_2_BugOverload#readme",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/parser": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"babel-loader": "^9.0.0",
"body-parser": "^1.20.0",
"clean-webpack-plugin": "^4.0.0",
"cookie-parser": "^1.4.6",
"copy-webpack-plugin": "^11.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.1",
"debug": "^4.3.4",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"handlebars-loader": "^1.7.2",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.6.1",
"morgan": "^1.10.0",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"stylelint": "^14.14.1",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-csstree-validator": "^2.0.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-pwa-manifest": "^4.3.0",
"ws": "^8.11.0"
},
"dependencies": {
"fs": "^0.0.1-security",
"glob": "^8.0.3",
"moviegate-ui-kit": "^1.0.38"
}
}