forked from saadq/resumake.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.25 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
{
"name": "latexresu.me",
"version": "0.1.0",
"repository": "git@github.com:saadq/latexresu.me.git",
"author": {
"name": "Saad Quadri",
"email": "saad@saadq.com",
"url": "http://saadq.com"
},
"scripts": {
"build": "npm run build:client && npm run build:server",
"start": "npm run start:client & npm run start:server",
"lint": "npm run lint:client && npm run lint:server",
"fix": "npm run fix:client && npm run fix:server",
"format": "npm run format:client && npm run format:server",
"test": "npm run test:client && npm run test:server",
"dist": "cd app/client && npm run build",
"build:client": "cd app/client && npm install",
"start:client": "cd app/client && npm start",
"lint:client": "cd app/client && npm run lint",
"fix:client": "cd app/client && npm run fix",
"format:client": "cd app/client && npm run format",
"test:client": "cd app/client && npm test",
"build:server": "cd app/server && npm install",
"start:server": "cd app/server && npm run watch",
"fix:server": "cd app/server && npm run fix",
"format:server": "cd app/server && npm run format",
"lint:server": "cd app/server && npm run lint",
"test:server": "cd app/server && npm test"
},
"license": "MIT"
}