-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"type": "module",
"private": true,
"scripts": {
"start:dev": "cross-env NODE_ENV=development node ./src/start-node-red.js",
"start:prod": "cross-env NODE_ENV=production node ./src/start-node-red.js",
"lint": "yarn run eslint:check && yarn run prettier:check && yarn run check-types",
"prettier:check": "prettier . --check",
"prettier:fix": "prettier . --write",
"eslint:check": "eslint . --ext .js,.jsx --max-warnings 0",
"eslint:fix": "eslint . --ext .js,.jsx --max-warnings 0 --fix",
"eslint:check-allow-warning": "eslint . --ext .ts,.tsx,.js,.jsx",
"webpack": "webpack --config webpack.config.js",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.0",
"mongodb": "^6.5.0",
"node-red": "^3.1.7"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@eslint/eslintrc": "^3.0.2",
"@webpack-cli/generators": "^3.0.7",
"babel-loader": "^8.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.5",
"webpack": "^5.91.0"
}
}