-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "skatteetaten.github.io",
"groupId": "no.skatteetaten.aurora",
"version": "1.0.0",
"description": "Information about the Skatteetaten GitHub organisation, repositories and approaches to software",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Skatteetaten/skatteetaten.github.io.git"
},
"scripts": {
"prestart": "npm run clean",
"start": "react-scripts start",
"prebuild": "run-s clean lint",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"deploy": "gh-pages -d build -p 0",
"test:coverage": "echo \"No test specified\"",
"lint": "eslint 'src/**/*{.ts,.tsx}'",
"lint:fix": "eslint --fix 'src/**/*{.ts,.tsx}'",
"clean": "rimraf build coverage *.tgz",
"eject": "react-scripts eject"
},
"dependencies": {
"@skatteetaten/frontend-components": "6.0.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@skatteetaten/ci-scripts": "3.0.0",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"eslint-plugin-prettier": "4.2.1",
"gh-pages": "4.0.0",
"husky": "8.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.8.3",
"pretty-quick": "3.1.3",
"react-scripts": "5.0.1",
"rimraf": "4.1.1",
"typescript": "4.9.4"
},
"overrides": {
"eslint-import-resolver-node": "0.3.6"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"singleQuote": true
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"not op_mini all"
],
"engines": {
"node": ">=18.0.0"
}
}