-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.54 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
{
"name": "spotifine_global",
"version": "1.0.0",
"scripts": {
"print:env": "npm install && echo USING FOLLOWING ENVIRONMENT : && node scripts/cat.js .env",
"copy:env:front": "node scripts/cp.js .env front/spotifine/src/.env",
"set:env:front": "npm run --prefix ./front/spotifine set:environment",
"init:front": "npm run copy:env:front && npm run set:env:front",
"refresh:env": "npm run clean:env && npm run copy:env",
"clean:all": "npm install && npm run clean:env && npm run clean:lib && npm run clean:back && npm run clean:front && node scripts/rm.js node_modules",
"clean:env": "node scripts/rm.js front/spotifine/src/.env && npm run --prefix ./front/spotifine clear:environment",
"clean:lib": "node scripts/rm.js lib/node_modules",
"clean:back": "node scripts/rm.js back/dist && node rm.js back/node_modules",
"clean:front": "node scripts/rm.js front/spotifine/www && node rm.js front/spotifine/node_modules",
"install:lib": "cd lib && npm install",
"install:back": "npm run install:lib && cd back && npm install",
"install:front": "npm run install:lib && cd front/spotifine && npm install",
"run:back": "npm run --prefix ./back dev",
"run:front": "npm run --prefix ./front/spotifine serve",
"back:dev": "npm run print:env && npm run install:back && npm run run:back",
"front:dev": "npm run print:env && npm run install:front && npm run init:front && npm run run:front"
},
"devDependencies": {
"shelljs": "^0.8.3",
"public-ip": "^4.0.1"
},
"dependencies": {
"dotenv": "^8.2.0"
}
}