forked from junaid-home/codepad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
19 lines (19 loc) · 827 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "codemirror",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server:dev": "cd server && npm run start:dev && cd ..",
"client:dev": "cd client && npm start && cd ..",
"build": "rm -rf build && npm run build:server && npm run build:client && npm run move:server:client",
"install": "cd client && npm install && cd .. && cd server && npm install && cd ..",
"build:server": "cd server && npm run build && cd ..",
"build:client": "cd client && npm run build && cd ..",
"move:server": "mv ./server/build . && cp ./server/package.json ./build && cd build && npm install && cd ..",
"move:server:client": "npm run move:server && mv ./client/build ./build && cd build && mv ./build client && cd .."
},
"keywords": [],
"author": "",
"license": "MIT"
}