-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 899 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 899 Bytes
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
{
"name": "burl",
"version": "1.0.0",
"description": "Breaking URLs",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"test": "vitest run",
"test:debug": "vitest run --inspect-brk --no-file-parallelism",
"test:watch": "vitest watch",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"antd": "^4.15.3",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mebble/burl.git"
},
"keywords": [
"URL"
],
"author": "Neil Syiemlieh",
"license": "ISC",
"bugs": {
"url": "https://github.com/mebble/burl/issues"
},
"homepage": "https://github.com/mebble/burl#readme",
"devDependencies": {
"cypress": "^10.9.0",
"vitest": "^2.0.5"
}
}