-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.21 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
{
"name": "ariconium.co.uk",
"license": "ISC",
"version": "1.0.0",
"scripts": {
"check": "npm-check -s -u",
"start": "next",
"lint": "standard | snazzy",
"lint-fix": "standard --fix --verbose | snazzy",
"build": "next build",
"export": "next export",
"next": "next start",
"package": "yarn run build && yarn run export",
"postexport": "node ./scripts/postExport.js",
"production": "push-dir --dir=out [email protected]:DryKISS/ariconium.co.uk.git --branch=gh-pages",
"clean-cache": "rimraf -rf ./node_modules/.cache",
"serve": "serve out"
},
"standard": {
"globals": [
"__SITE__"
],
"ignore": [
"node_modules/**",
"*.bundle*.js"
],
"parser": "babel-eslint"
},
"eslint": {
"settings": {
"react": {
"version": "detect"
}
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/pro-duotone-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.6",
"next": "^9.1.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"styled-components": "^4.4.0"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/pro-regular-svg-icons": "^5.11.2",
"@fullcalendar/core": "^4.3.1",
"@fullcalendar/daygrid": "^4.3.0",
"@fullcalendar/interaction": "^4.3.0",
"@fullcalendar/react": "^4.3.0",
"@fullcalendar/timegrid": "^4.3.0",
"@zeit/next-css": "^1.0.1",
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.6",
"bcryptjs": "^2.4.3",
"fs-extra": "^8.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"next-transpile-modules": "^2.3.1",
"npm-check": "^5.9.0",
"push-dir": "^0.4.1",
"react-dropzone": "^10.1.10",
"react-select": "^3.0.8",
"react-tooltip": "^3.11.1",
"serve": "^11.2.0",
"sitemap": "^5.0.0",
"snazzy": "^8.0.0",
"standard": "^14.3.1",
"stylelint": "^11.1.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0"
}
}