This repository has been archived by the owner on Jan 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.59 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "minor-critical-design",
"version": "1.0.0",
"private": true,
"description": "The critical design project from Max Altena for the Minor Digital Experience Design",
"keywords": [
"maxaltena",
"critical-design",
"minor-dxd"
],
"homepage": "/",
"bugs": {
"url": "https://github.com/maxaltena/minor-critical-design/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/maxaltena/minor-critical-design.git"
},
"license": "WTFPL",
"author": "Max Altena <max@maxaltena.com> (https://maxaltena.com/)",
"scripts": {
"build": "snowpack build",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"netlify:preview": "netlify build && netlify deploy",
"prettier": "prettier src/**/*",
"prettier:fix": "prettier src/**/* --write",
"sort-package-json": "sort-package-json",
"start": "snowpack dev",
"test": "snyk test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "npm run prettier:fix",
"*.{js,jsx,ts,tsx}": "npm run eslint:fix",
"package.json": "npm run sort-package-json"
},
"browserslist": [
"last 1 version",
"> 0.25%",
"maintained node versions",
"not dead"
],
"dependencies": {
"connected-react-router": "^6.8.0",
"framer-motion": "^3.2.1",
"history": "^4.10.1",
"localforage": "^1.9.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.1",
"styled-normalize": "^8.0.7",
"styled-reset": "^4.3.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.0.5",
"@snowpack/plugin-react-refresh": "^2.4.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/plugin-webpack": "^2.3.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux-logger": "^3.0.8",
"@types/snowpack-env": "^2.3.3",
"@types/styled-components": "^5.1.7",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"redux-devtools-extension": "^2.13.8",
"snowpack": "^3.0.11",
"snyk": "^1.439.1",
"sort-package-json": "^1.48.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 8.17.0",
"npm": ">= 6.12.1",
"yarn": ">= 1.19.1"
}
}