forked from saadq/resumake.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.55 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "resumake.io",
"version": "0.2.0",
"repository": "[email protected]:saadq/resumake.git",
"author": {
"name": "Saad Quadri",
"email": "[email protected]",
"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 start",
"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",
"contributors": "all-contributors",
"postinstall": "opencollective postinstall"
},
"license": "MIT",
"devDependencies": {
"all-contributors-cli": "^4.10.1"
},
"dependencies": {
"opencollective": "^1.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/resumake"
}
}