-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.19 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
{
"name": "github-explorer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && nodemon",
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --watch --config webpack.dev.js",
"lint": "eslint './**/*.js'",
"lint:fix": "eslint './**/*.js' --fix",
"prettier:check": "prettier --check './**/*.{js,json,css}'",
"prettier:write": "prettier --write './**/*.{js,json,css}'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest ./test/**/*.test.js",
"test:functional": "codeceptjs run"
},
"author": "",
"license": "ISC",
"dependencies": {
"@formatjs/intl-relativetimeformat": "^5.2.6",
"compression": "^1.7.4",
"express": "^4.17.1",
"intersection-observer": "^0.10.0",
"intl-pluralrules": "^1.2.0",
"intl-relativeformat": "^2.2.0",
"isomorphic-fetch": "^2.2.1",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-string-replace": "^0.4.4",
"styled-components": "^5.1.1",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"codeceptjs": "^2.6.5",
"eslint": "^7.2.0",
"eslint-plugin-codeceptjs": "^1.3.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"puppeteer": "^3.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"lint-staged": {
"*.{js,json,css}": "prettier",
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test && npm run test:functional"
}
}
}