-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "apo-boilerplate",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "yarn build:dev && yarn start",
"develop:watch": "nodemon --watch src --exec yarn develop",
"build:tsc": "tsc",
"build:bundle": "rollup -c",
"minify": "terser --compress --mangle --toplevel --output dist/index.js -- dist/index.js",
"build": "yarn build:tsc && yarn build:bundle && yarn minify",
"build:dev": "yarn build:tsc && yarn build:bundle"
},
"files": [
"dist/index.js"
],
"keywords": [
"boilerplate",
"pdx",
"code guild",
"express",
"learning helper"
],
"author": "Zack Kollar (SeedyROM)",
"engines": {
"node": ">=8.9.0",
"yarn": ">=1.15.0"
},
"license": "MIT",
"bin": {
"create-boilerplate": "dist/index.js"
},
"devDependencies": {
"cli-spinner": "^0.2.10",
"nodemon": "^1.19.1",
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"terser": "^4.1.3",
"typescript": "^3.5.3"
}
}