-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.5 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
{
"name": "nemiro",
"version": "0.0.1",
"scripts": {
"dev": "npx cross-env NODE_ENV=development node backend",
"start": "npx cross-env NODE_ENV=production pm2 start backend",
"build": "npx cross-env NODE_ENV=production webpack --config webpack.config.js",
"test": "jest",
"eslint": "npx eslint .",
"eslint:fix": "npx eslint . --fix",
"stylelint": "npx stylelint '**/*.css'"
},
"license": "MIT",
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"babel-loader": "^8.2.5",
"cookie-parser": "^1.4.6",
"express": "4.18.1",
"express-ws": "^5.0.2",
"pm2": "^5.3.0",
"russian-words": "^1.0.1",
"uuid": "^8.3.2",
"webpack": "^5.74.0",
"webpack-dev-middleware": "^5.3.3"
},
"devDependencies": {
"@jest/globals": "^29.0.2",
"autoprefixer": "^10.4.12",
"babel-jest": "^29.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.1",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"postcss": "^8.4.16",
"postcss-loader": "^7.0.1",
"style-loader": "^3.3.1",
"stylelint": "^14.14.0",
"webpack-cli": "^4.10.0"
}
}