-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 921 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
{
"name": "adify",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build-web": "(cd web && npm run build)",
"build": "lerna run build --parallel",
"build:watch": "lerna run build:watch --parallel # for watching typescript files",
"dev": "lerna run dev --parallel",
"start": "lerna run start --parallel",
"deploy:now": "now",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
"test": "lerna run test --parallel",
"test:ci": "lerna run test:ci --parallel",
"postinstall": "lerna bootstrap"
},
"main": "index.js",
"repository": "[email protected]:iqubex-technologies/adify.git",
"author": "Kumar Abhirup <[email protected]> (http://kumar.now.sh)",
"license": "MIT",
"devDependencies": {
"lerna": "^3.16.4"
},
"engines": {
"node": "^8.10.0 || ^10.13.0 || >=11.10.1"
}
}