-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.38 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
{
"name": "ladnodavaytebezroflov-frontend",
"version": "0.2.2",
"description": "LadnoDavayteBezRoflov team, Technopark, autumn of 2021",
"main": "./server/server.js",
"scripts": {
"lint": "npx eslint . --ext .js",
"lint:fix": "npx eslint . --ext .js --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev": "npx webpack",
"server-dev-express": "PORT=3001 node server/server.js",
"server-dev": "npx webpack serve",
"start-dev": "npm run server-dev",
"build": "NODE_ENV='production' npx webpack",
"server": "sudo node server/server.js",
"start": "npm run build && npm run server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontend-park-mail-ru/2021_2_LadnoDavayteBezRoflov.git"
},
"keywords": [
"trello"
],
"author": "LDBR team",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/frontend-park-mail-ru/2021_2_LadnoDavayteBezRoflov/issues"
},
"homepage": "https://github.com/frontend-park-mail-ru/2021_2_LadnoDavayteBezRoflov#readme",
"dependencies": {
"body-parser": "^1.19.0",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-unused-imports": "^1.1.5",
"express": "5.0.0-alpha.8",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.3.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.4",
"node-sass": "^6.0.1",
"sass-loader": "^12.3.0",
"terser-webpack-plugin": "^5.3.0",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0",
"workbox-build": "^6.3.0",
"workbox-cli": "^6.3.0",
"workbox-core": "^6.3.0",
"workbox-expiration": "^6.3.0",
"workbox-precaching": "^6.3.0",
"workbox-routing": "^6.3.0",
"workbox-strategies": "^6.3.0",
"workbox-webpack-plugin": "^6.3.0"
}
}