-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.77 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
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p %PORT%",
"jsonserver": "json-server db.json --port 3003",
"storybook": "start-storybook -p 9009 -s ./public,./static",
"build-storybook": "build-storybook",
"analyze": "cross-env BUNDLE_ANALYZE=both next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"tslint": "tslint -p . -c tslint.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@moltin/sdk": "^3.23.0",
"@next/bundle-analyzer": "^9.0.5",
"@types/prop-types": "^15.7.3",
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-sass": "^1.0.1",
"chart.js": "^2.9.3",
"css-element-queries": "^1.0.2",
"dotenv": "^8.2.0",
"firebase": "^7.13.2",
"lodash": "^4.17.15",
"next": "^9.3.4",
"next-pwa": "^2.4.0",
"next-redux-wrapper": "^3.0.0",
"node-sass": "^4.13.1",
"prop-types": "^15.7.2",
"pubsub-js": "^1.7.0",
"react": "^16.13.1",
"react-chartjs-2": "^2.9.0",
"react-country-flag": "^2.0.1",
"react-dom": "^16.13.1",
"react-lazy-load": "^3.0.13",
"react-markdown": "^4.0.6",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"sass-resources-loader": "^2.0.1",
"save": "^2.4.0",
"semantic-ui-react": "0.88.1",
"tailwindcss": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react": "^5.2.1",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.1",
"@types/node": "^12.7.5",
"@types/react": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.3",
"jest": "^25.2.7",
"prettier": "^2.0.2",
"react-addons-test-utils": "^15.6.2",
"react-redux": "^5.0.0",
"react-swipeable": "^5.4.0",
"react-test-renderer": "^16.8.4",
"redux": "^4.0.4",
"tslint": "^6.1.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-react-hooks": "^2.2.2",
"typescript": "^3.6.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 120
}
}