-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1 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
{
"name": "lean",
"version": "0.0.1",
"description": "LEAN Stack - LAMP Reborn.",
"scripts": {
"install": "npm run install:client && npm run install:server",
"install:client": "(cd ./client && npm install)",
"install:server": "(cd ./server && npm install)",
"postinstall":"npm run build",
"build": "npm run build:client",
"build:client": "(cd ./client && npm run build)",
"build:clientx": "(cd ./client && npm run build:aot:prod)",
"start": "npm run start:prod",
"start:prod": "(cd ./server && ./node_modules/.bin/ts-node ./src/main.ts)",
"start:dev": "npm run start:client & npm run start:server",
"start:client": "(cd ./client && npm run start)",
"start:server": "(cd ./server && npm run start:watch)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbrice/lean.git"
},
"author": "Samuel Brice",
"license": "MIT", "bugs": {
"url": "https://github.com/sbrice/lean/issues"
},
"homepage": "https://github.com/sbrice/lean#readme"
}