-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.29 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
{
"name": "ecotrack",
"version": "1.0.0",
"description": "EcoTrack Application",
"main": "index.js",
"scripts": {
"start": "node server/src/app.js",
"server": "nodemon server/src/app.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install:all": "npm install && npm install --prefix server && npm install --prefix client",
"test:server": "cd server && npm test",
"lint:all": "npm run lint:client && npm run lint:server",
"lint:client": "cd client && eslint . --fix",
"lint:server": "cd server && eslint . --fix",
"prettier:client": "npx prettier --write 'client/**/*.{js,jsx,json,css}'",
"prettier:server": "npx prettier --write 'server/**/*.{js,json}'",
"prettier:all": "npm run prettier:client && npm run prettier:server",
"build:client": "npm run build --prefix client",
"move:client": "mv ./client/dist ./server/dist",
"build": "npm run build:client && npm run move:client"
},
"keywords": [],
"author": "Charlie Nourrcier",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.4",
"prettier": "^3.3.3"
},
"dependencies": {
"dotenv": "^16.4.5"
}
}