-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 KB
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
{
"name": "podsheets",
"version": "1.0.0",
"description": "Podcast content manager",
"main": "server/build/src/index.js",
"engines": {
"node": "6.10.2"
},
"scripts": {
"build:frontend": "cd ./frontend && yarn install --production=false && npm run build",
"build:server": "cd ./server && yarn install --production=false && npm run build",
"build:copy:setup": "rm -rf ./server/public/dist && mkdir -p ./server/public/dist",
"build:copy": "npm run build:copy:setup && cp ./frontend/dist/* ./server/public/dist/.",
"build": "npm run build:frontend && npm run build:server",
"postbuild:frontend": "npm run build:copy",
"prestart": "npm run build:server",
"start": "cd ./server && npm run start"
},
"author": "Rodrigo Pimentel",
"license": "Unlicense",
"dependencies": {
"audio-buffer-utils": "^5.1.1",
"audio-format": "^2.2.1",
"moment": "^2.18.1",
"react-quill": "v1.0.0-rc.3",
"worker-loader": "^0.8.1"
},
"devDependencies": {
"@types/node": "^8.0.17",
"style-loader": "^0.18.2"
}
}