forked from fiedka/fiedka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
49
{
"name": "utk-web",
"version": "1.0.0",
"description": "A web visualiztion for utk's JSON output",
"main": "index.js",
"scripts": {
"start": "next",
"build": "next build && next export",
"lint": "eslint src/**/*.jsx",
"fmt": "prettier --write src/**/*.jsx",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orangecms/utk-web.git"
},
"keywords": [
"web",
"firmware",
"utk",
"uefi",
"dxe",
"pei"
],
"author": "Daniel Maslowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/orangecms/utk-web/issues"
},
"homepage": "https://github.com/orangecms/utk-web#readme",
"dependencies": {
"@coalmines/indui": "^1.1.0",
"classnames": "^2.2.6",
"next": "^10.0.3",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-jsx": "^3.3.2"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"eslint": "^7.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"prettier": "^2.2.1"
}
}