-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 2.03 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
{
"name": "@pwrdrvr/microapps-app-nextjs-demo-workspace",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/pwrdrvr/microapps-app-nextjs-demo.git"
},
"author": "PwrDrvr LLC",
"license": "MIT",
"homepage": "https://github.com/pwrdrvr/microapps-app-nextjs-demo#readme",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"build:jsii-all": "npm run -w @pwrdrvr/microapps-app-nextjs-demo-cdk build:jsii-all",
"build:next": "npm run -w @pwrdrvr/microapps-app-nextjs-demo build",
"clean": "npm run clean:dist && npm run clean:tsbuildinfo",
"clean:deep": "npm run clean:dist && npm run clean:modules && npm run clean:tsbuildinfo",
"clean:dist": "npm exec --workspaces -- npx rimraf dist && npx rimraf dist",
"clean:modules": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules",
"clean:tsbuildinfo": "npm exec --workspaces -- npx rimraf *.tsbuildinfo",
"dev": "NODE_CONFIG_ENV=${NODE_CONFIG_ENV:-dev} npm -w @pwrdrvr/microapps-app-nextjs-demo run dev",
"lint": "eslint ./packages/ --ext .ts --ext .tsx",
"lint-and-fix": "eslint ./packages/ --ext .ts --ext .tsx --fix",
"postinstall": "patch-package --patch-dir ./patches/",
"start:app:next": "NODE_ENV=${NODE_ENV:-production} NODE_CONFIG_ENV=${NODE_CONFIG_ENV:-dev} npm -w @pwrdrvr/microapps-app-nextjs-demo run start",
"install:node-prune": "curl -sf https://gobinaries.com/tj/node-prune | sh"
},
"devDependencies": {
"@pwrdrvr/microapps-publish": "0.3.5",
"@types/node": "16.9.2",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"aws-cdk": "^2.24.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"patch-package": "6.5.1",
"prettier": "^2.2.1",
"rimraf": "3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}