-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 KB
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
{
"name": "redoubt-landing",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:docker": "yarn build && next start",
"lint": "next lint",
"lint:fix": "eslint ./components/** ./pages/** ./hooks/** -c .eslintrc.json --fix"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"not ie <= 11",
"Safari >= 12.0",
"iOS >= 12.0",
"Chrome >= 74",
"Firefox >= 74",
"Edge >= 80",
"Opera >= 62"
],
"dependencies": {
"@chakra-ui/react": "^1.6.4",
"@emotion/react": "11",
"@emotion/styled": "11",
"@fontsource/inter": "^4.4.5",
"animejs": "^3.2.1",
"axios": "^1.3.2",
"figmotion-animejs": "^0.0.1",
"framer-motion": "4",
"locomotive-scroll": "^3.6.1",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intersection-observer": "^8.32.0",
"react-locomotive-scroll": "^0.1.8",
"react-query": "^3.39.3",
"sass": "^1.35.1"
},
"devDependencies": {
"eslint": "7.29.0",
"eslint-config-next": "11.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"standard": "^16.0.4"
}
}