-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-application",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/KhadijaMahanga/nukta-enigma.git"
},
"keywords": [
"react"
],
"author": "Khadija Mahanga",
"license": "ISC",
"bugs": {
"url": "https://github.com/KhadijaMahanga/nukta-enigma/issues"
},
"homepage": "https://staging.nukta.co.tz",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.8.1",
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-brands-svg-icons": "^5.8.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@material-ui/core": "^4.10.2",
"@zeit/next-css": "^1.0.1",
"axios": "^0.19.0",
"bootstrap": "^4.4.1",
"isomorphic-unfetch": "^3.0.0",
"jquery": "^3.4.1",
"lazysizes": "^5.2.0",
"material-ui-popup-state": "^1.5.4",
"moment": "https://github.com/KhadijaMahanga/moment.git#develop",
"next": "^9.4.1",
"next-compose-plugins": "^2.2.0",
"next-fonts": "^1.0.3",
"next-images": "^1.3.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-moment": "^0.9.7"
},
"scripts": {
"dev": "next",
"start": "next start",
"build": "next build",
"export": "next export",
"test": "next test",
"lint": "yarn eslint --fix ./"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^4.0.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.14.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {}
},
"lint-staged": {
"src/**/*.{js,json,scss,md}": [
"yarn lint",
"git add"
]
}
}