-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "xyz.icehe",
"description": "IceHe's Lib",
"version": "1.0.0",
"license": "GPL-3.0",
"author": "IceHe",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/IceHe/lib"
},
"keywords": [
"icehe",
"tech"
],
"main": "./dist/index.js",
"scripts": {
"dev:watch": "node ./node_modules/parcel-bundler/bin/cli watch ./src/index.js --target node --out-dir ./dist/",
"dev:hot-reload": "node ./node_modules/nodemon/bin/nodemon --watch ./dist/ ./dist/index.js",
"start": "node ./node_modules/npm-run-all/bin/npm-run-all -p -r dev:watch dev:hot-reload",
"build": "node ./node_modules/parcel-bundler/bin/cli build ./src/index.js --target node --out-dir ./dist/",
"lint": "node ./node_modules/eslint/bin/eslint . --ext .js --fix"
},
"devDependencies": {
"@silverhand/eslint-config": "^0.2.2",
"@silverhand/ts-config": "^0.2.2",
"eslint": "^7.32.0",
"nodemon": "^2.0.13",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.5",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=14.15.0",
"pnpm": ">=6"
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc"
}