forked from ASOS/web-toggle-point
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.61 KB
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
{
"name": "web-toggle-point-next-example",
"version": "0.4.1",
"private": true,
"type": "module",
"scripts": {
"build-dependencies": "path-exists ../../packages/webpack/lib || npm run --prefix ../../packages/webpack build && path-exists ../../packages/features/lib || npm run --prefix ../../packages/features build && path-exists ../../packages/react-pointcuts/lib || npm run --prefix ../../packages/react-pointcuts build",
"predev": "npm run build-dependencies",
"prebuild": "npm run build-dependencies",
"dev": "next dev",
"build": "next build",
"start": "next start",
"prelint": "npm run build-dependencies",
"lint": "npm run lint:code && npm run lint:docs",
"lint:fix": "npm run lint:code -- --fix && npm run lint:docs -- --fix",
"lint:code": "next lint",
"lint:docs": "eslint **/*.mdx"
},
"dependencies": {
"@asos/web-toggle-point-features": "file:../../packages/features",
"@asos/web-toggle-point-react-pointcuts": "file:../../packages/react-pointcuts",
"@asos/web-toggle-point-webpack": "file:../../packages/webpack",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.0.3",
"next": "^15.3.0",
"remark-gfm": "^4.0.0",
"turndown": "^7.2.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.0.3",
"@types/mdx": "^2.0.13",
"@types/turndown": "^5.0.5",
"@types/webpack-env": "^1.18.8",
"eslint-config-next": "^15.0.3",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-mdx": "^3.1.5",
"path-exists-cli": "^2.0.0"
},
"peerDependencies": {
"@playwright/test": "^1.49.0"
}
}