-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.28 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
{
"name": "skyfall",
"version": "4.2.0",
"private": true,
"author": "Philihp Busby <[email protected]>",
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint .",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@airbnb/lunar": "3.28.1",
"@airbnb/lunar-icons": "3.1.1",
"@visx/axis": "1.4.0",
"@visx/group": "1.0.0",
"@visx/scale": "1.14.0",
"@visx/shape": "1.4.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"neat-csv": "6.0.1",
"next": "10.2.3",
"react": "17.0.1",
"react-data-table-component": "6.11.8",
"react-dom": "17.0.1",
"react-simple-maps": "2.3.0",
"styled-components": "5.3.3"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@philihp/eslint-config": "4.3.0",
"husky": "7.0.4",
"lint-staged": "12.1.2"
},
"lint-staged": {
"**/*.{js,jsx,json}": [
"eslint --fix"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}