-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
72 lines (72 loc) · 2.15 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
{
"name": "learn-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:next": "next dev -p 3000",
"dev:https-link": "local-ssl-proxy --source 443 --target 3000",
"build:staging": "cp .env.staging .env.local && next build",
"build": "next build",
"start": "next start -p $PORT",
"build-static": "next build && next export",
"check-lint": "eslint .",
"check-format": "prettier --check .",
"lint": "eslint --fix .",
"format": "prettier --write .",
"test": "jest --env=jsdom",
"test-watch": "jest --env=jsdom --watch",
"prepare": "husky install",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"axios": "^0.21.1",
"cross-fetch": "^3.1.5",
"dotenv": "^14.3.2",
"framer-motion": "^3.2.1",
"local-ssl-proxy": "^1.3.0",
"next": "^12.1.0",
"next-use-posthog": "^1.16.0",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "^6.15.5",
"sass": "^1.30.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.3.5",
"@storybook/addon-essentials": "^6.3.5",
"@storybook/addon-links": "^6.3.5",
"@storybook/builder-webpack5": "^6.3.5",
"@storybook/manager-webpack5": "^6.3.6",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.3.5",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"babel-jest": "^27.0.6",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0"
},
"engines": {
"node": "16.x"
},
"volta": {
"node": "16.16.0",
"yarn": "1.22.17"
}
}