-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.91 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "napim",
"version": "4.2.1",
"description": "Node Api Maker build with polka",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "dist/esm/index.d.ts",
"scripts": {
"watch": "tsc -w & nodemon -q -w dist dist/index.js",
"watch-test": "cd test && tsc -w & nodemon -q -w dist_test dist_test/index.js",
"build": "rm -rf dist && NODE_ENV=production rollup -c && ./fixup",
"build-test": "rm -rf dist_test & cd test && tsc && cd ..",
"dev": "run-p watch watch-test",
"start": "node --experimental-modules --es-module-specifier-resolution=node --unhandled-rejections=strict dist_test/index.js",
"changelog": "git-chglog > CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kodepintar/napim.git"
},
"keywords": [
"polka",
"nodejs",
"api",
"knex"
],
"author": "Akhmad Salafudin",
"license": "ISC",
"bugs": {
"url": "https://github.com/kodepintar/napim/issues"
},
"homepage": "https://github.com/kodepintar/napim#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"node-input-validator": "5.0.0-beta.3",
"polka": "^1.0.0-next.15",
"simple-node-logger": "^18.12.24",
"validator": "^13.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/body-parser": "^1.19.2",
"@types/node": "^14.11.1",
"@types/polka": "^0.5.1",
"bcryptjs": "^2.4.3",
"knex": "^2.4.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"pg": "^8.5.1",
"rollup": "^2.52.3",
"rollup-plugin-dotenv": "^0.3.0",
"sqlite3": "^5.0.2",
"tslib": "^2.3.0",
"typescript": "^4.0.3"
}
}