This repository was archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.73 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 4.73 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "imnext-js",
"description": "A React framework for web artisans nextjs 9",
"version": "1.1.0",
"author": "imagine10255",
"license": "MIT",
"scripts": {
"dev": "node index.js",
"build": "NODE_ENV=production NEXT_TELEMETRY_DISABLED=1 next build",
"export": "yarn build && next export -o .dist",
"export:start": "serve .dist -p 8080",
"start": "cross-env NODE_ENV=production node src/server",
"storybook": "NODE_ENV=storybook start-storybook -p 6006 -c ./test/storybook",
"storybook:build": "build-storybook",
"bootstrap:build": "node-sass ./src/resources/assets/styles/dist/bootstrap.scss ./src/resources/assets/styles/dist/bootstrap.css",
"lint:js": "eslint .",
"lint:staged": "lint-staged",
"log": "git log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cblueby %an %Cgreen(%cr)%Creset'",
"cz": "git cz",
"test": "cross-env NODE_ENV=test jest --config=./test/jest/jest.config.js",
"test:watch": "cross-env NODE_ENV=test jest --watchAll",
"test:reproxy": "docker-compose -f ./test/reproxy/docker-compose.yml",
"release": "standard-version",
"release:major": "standard-version -r major",
"release:minor": "standard-version -r minor",
"release:patch": "standard-version -r patch",
"release:pre": "standard-version --prerelease alpha",
"release:push": "git push --follow-tags origin master"
},
"engines": {
"npm": ">=5",
"node": ">=12.0.0 <13.0.0"
},
"lint-staged": {
"*.js": [
"yarn lint:js --fix",
"git add --force"
]
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "yarn lint:staged"
}
},
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/preset-env": "7.7.6",
"@babel/register": "7.7.4",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"apisauce": "1.1.1",
"axios": "^0.19.1",
"babel-loader": "8.0.6",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-macros": "2.8.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "1.10.6",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"body-parser": "^1.19.0",
"classnames": "2.2.6",
"cookie-parser": "^1.4.4",
"core-js": "2.6.10",
"cross-env": "6.0.3",
"dayjs": "1.8.17",
"dotenv": "^8.2.0",
"dotenv-webpack": "1.7.0",
"es6-promise": "^4.2.8",
"express": "4.17.1",
"formik": "2.0.7",
"js-cookie": "2.2.1",
"jwt-decode": "2.2.0",
"lodash": "^4.17.15",
"next": "9.3.2",
"next-compose-plugins": "^2.2.0",
"next-fonts": "^0.19.0",
"next-i18next": "4.0.0",
"next-redux-saga": "4.1.2",
"next-redux-wrapper": "^3.0.0",
"next-routes": "^1.4.2",
"node-sass": "4.13.0",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-redux": "7.1.3",
"redux": "4.0.4",
"redux-saga": "1.1.3",
"reduxsauce": "1.1.1",
"seamless-immutable": "7.1.4",
"seamless-immutable-mergers": "^7.1.0",
"styled-components": "4.4.1",
"webpack": "^4.41.2",
"yup": "^0.27.0"
},
"devDependencies": {
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addon-viewport": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"babel-eslint": "10.0.3",
"bootstrap": "4.4.1",
"cz-conventional-changelog": "3.0.2",
"cz-customizable": "6.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "6.7.2",
"eslint-config-airbnb": "18.0.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-import-resolver-webpack": "0.12.1",
"eslint-plugin-flowtype": "4.5.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-redux-saga": "1.1.3",
"flow-bin": "0.113.0",
"http-proxy-middleware": "^0.20.0",
"husky": "3.1.0",
"jest-cli": "25.0.0",
"jest-styled-components": "6.3.4",
"lint-staged": "9.5.0",
"pre-commit": "1.2.2",
"react-test-renderer": "^16.12.0",
"serve": "^11.2.0",
"standard-version": "7.1.0",
"storybook-addon-i18n": "5.1.13",
"validate-commit-msg": "2.14.0"
}
}