-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 884 Bytes
/
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
{
"name": "musilink",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "18.15.0"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"scripts": {
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"server": "nodemon index.js",
"client": "cd client && npm start",
"postinstall": "cd client && npm install",
"build": "NODE_ENV=production cd client/ && npm install && npm run build",
"start-server": "node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "1.2.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"query-string": "^7.1.3"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"concurrently": "^8.2.1",
"nodemon": "^3.0.1"
}
}