-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
48 lines (48 loc) · 1.32 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
45
46
47
48
{
"name": "meli",
"version": "1.0.0-beta.24",
"description": "Open source platform for deploying static sites and frontend applications.",
"repository": {
"type": "git",
"url": "https://github.com/getmeli/meli"
},
"bugs": {
"url": "https://github.com/getmeli/meli/issues"
},
"scripts": {
"postinstall": "npm i --prefix server && npm i --prefix ui",
"start": "npm-run-all --parallel start:server start:ui",
"start:server": "npm run start --prefix server",
"start:ui": "npm run start --prefix ui",
"build": "npm run build:server && npm run build:ui",
"build:server": "npm run build --prefix server",
"build:ui": "npm run build --prefix ui",
"test": "npm run test:ui",
"test:ui": "npm run test --prefix server",
"lint": "npm run lint --prefix server",
"lint:fix": "npm run lint:fix --prefix server"
},
"keywords": [
"meli",
"getmeli",
"webdev",
"jamstack",
"static",
"site",
"deploy",
"react",
"angular",
"vue",
"nodejs"
],
"author": "Geoffroy Empain",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"npm-run-all": "^4.1.5",
"semantic-release": "^17.4.2",
"semantic-release-license": "^1.0.2"
},
"dependencies": {}
}