forked from XPRNetwork/xpr-market-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.73 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
{
"name": "proton-market-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx, ts, tsx}' --config ./.prettierrc.js",
"typecheck": "$(npm bin)/tsc --noEmit",
"check:all": "yarn lint && yarn format && yarn typecheck",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s public",
"preview-build-storybook": "npx http-server ./storybook-static"
},
"dependencies": {
"@proton/js": "^22.0.64",
"@proton/web-sdk": "^2.7.23",
"dayjs": "^1.10.5",
"next": "10.2.3",
"pure-react-carousel": "^1.27.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-lazyload": "^3.2.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@svgr/webpack": "^5.5.0",
"@types/react": "17.0.6",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"prettier": "^2.3.0",
"typescript": "4.2.4",
"url-loader": "^4.1.1"
}
}