-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.52 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
{
"name": "masifunde-fe",
"version": "1.0.0",
"description": "Frontend for the Masifunde website",
"main": "index.js",
"engines": {
"node": ">= 18"
},
"scripts": {
"prepare": "husky install",
"start": "next start",
"dev": "next dev",
"test": "jest",
"test-watch": "jest --watch",
"build": "npm run build:production",
"build:production": "npm run _build && npm run _robots:production",
"build:preview": "npm run _build && npm run _robots:preview",
"_build": "next build && next export --threads 1",
"_robots:production": "cp src/robots.production.txt out/robots.txt",
"_robots:preview": "cp src/robots.preview.txt out/robots.txt",
"lint": "eslint --max-warnings 0 '*.{js,ts,tsx}' 'src/**/*.{js,ts,tsx}'",
"lint-fix": "eslint --fix '*.{js,ts,tsx}' 'src/**/*.{js,ts,tsx}'",
"prettier-check": "prettier --list-different '*.{js,ts,tsx}' 'src/**/*.{js,ts,tsx}'",
"prettier-fix": "prettier --write '*.{js,ts,tsx}' 'src/**/*.{js,ts,tsx}'",
"type-check": "tsc --noEmit",
"serve": "netlify dev -d out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/futurice/masifunde-fe.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/futurice/masifunde-fe/issues"
},
"homepage": "https://github.com/futurice/masifunde-fe#readme",
"dependencies": {
"contentful": "^10.0.0-beta-v10.8",
"final-form": "^4.20.7",
"final-form-calculate": "^1.3.2",
"i18n-react": "^0.7.0",
"isomorphic-unfetch": "^3.1.0",
"lodash": "^4.17.21",
"next": "^12.0.0",
"nprogress": "^0.2.0",
"nuka-carousel": "^5.1.1",
"polished": "^4.2.2",
"prop-types": "^15.6.1",
"qs": "^6.5.1",
"react": "^17.0.0",
"react-async-script": "^1.2.0",
"react-dom": "^17.0.0",
"react-final-form": "^6.5.9",
"react-icons": "^4.7.1",
"react-markdown": "^8.0.0",
"react-modal": "^3.3.2",
"react-share": "^4.4.0",
"reactstrap": "^8.8.0",
"sitemap": "^7.1.1",
"styled-components": "^5.3.6",
"validator": "^13.7.0",
"yup": "^1.0.0-beta.7"
},
"devDependencies": {
"@types/gtag.js": "^0.0.12",
"@types/jest": "^29.2.4",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"cpx": "^1.5.0",
"eslint": "^8.0.0",
"eslint-config-next": "^13.0.6",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"netlify-cli": "^12.2.8",
"prettier": "^2.7.0",
"rimraf": "^3.0.2"
}
}