-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 887 Bytes
/
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
{
"name": "rex-demo",
"version": "1.0.0",
"description": "",
"main": "./node_modules/lerna/index.js",
"type": "module",
"engines": {
"node": "16"
},
"scripts": {
"init": "npm i && lerna run init",
"dev": "lerna run dev --parallel",
"start": "lerna run start --parallel",
"build": "lerna run build",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"precommit-msg": "echo 'Running linter...' && exit 0"
},
"devDependencies": {
"lerna": "^7.1.5",
"nodemon": "^2.0.22",
"pre-commit": "^1.2.2"
},
"homepage": "https://github.com/charisTheo/rex-demo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/charisTheo/rex-demo.git"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/charisTheo/rex-demo/issues"
}
}