-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "personal-website",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build-web": "(cd web && npm run build)",
"build": "NODE_ENV=production lerna run build --parallel",
"build:watch": "NODE_ENV=production lerna run build:watch --parallel",
"dev": "NODE_ENV=development lerna run dev --parallel",
"start": "NODE_ENV=production 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",
"test-postinstall": "lerna bootstrap"
},
"main": "index.js",
"repository": "git@github.com:KumarAbhirup/personal-website.git",
"author": "Kumar Abhirup",
"license": "MIT",
"devDependencies": {
"lerna": "^3.22.1"
},
"engines": {
"node": ">=12.x"
},
"dependencies": {
"imagemin": "^8.0.1",
"imagemin-jpegtran": "^7.0.0",
"imagemin-pngquant": "^9.0.2"
}
}