-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "bontiva",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=18.16",
"npm": "use-yarn"
},
"scripts": {
"dev:api": "nodemon ./server/bin/www",
"dev:client": "webpack serve --config webpack/webpack.dev.config.js",
"dev": "run-p dev:api dev:client",
"clean": "rm -rf build",
"lint:all": "eslint --quiet .",
"lint:all:fix": "eslint --fix .",
"prettier": "prettier --write ."
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.21.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"lerna": "^3.22.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"workspaces": [
"packages/*"
],
"main": "index.js",
"repository": "https://github.com/rake7h/bontiva.git",
"author": "Rakesh <[email protected]>",
"license": "MIT"
}