-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
125 lines (125 loc) · 4.1 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
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
{
"name": "theskillwithin-boilerplate",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"private": true,
"scripts": {
"start": "webpack serve --mode development --hot",
"build": "cross-env NODE_ENV=production webpack",
"serve": "cross-env NODE_ENV=production webpack serve",
"lint": "eslint ./src/**/**.js",
"lint:fix": "eslint ./src/**/**.js --fix",
"test": "jest",
"test:watch": "yarn run test --watch",
"test:cover": "yarn run test --coverage",
"format": "prettier --write \"src/**/*.js\"",
"cypress:open": "cypress open",
"precommit": "yarn run lint && yarn test",
"prepush": "yarn run lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theskillwithin/theskillwithin-boilerplate.git"
},
"keywords": [
"boilerplate",
"theskillwithin"
],
"author": "theskillwithin",
"license": "ISC",
"bugs": {
"url": "https://github.com/theskillwithin/theskillwithin-boilerplate/issues"
},
"homepage": "https://github.com/theskillwithin/theskillwithin-boilerplate#readme",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-async-to-generator": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.14",
"@babel/runtime": "^7.13.10",
"@emotion/babel-plugin": "^11.2.0",
"@storybook/addon-actions": "^6.2.2",
"@storybook/addon-essentials": "^6.2.2",
"@storybook/addon-links": "^6.2.2",
"@storybook/react": "^6.2.2",
"@storybook/theming": "^6.2.2",
"@testing-library/cypress": "^7.0.5",
"@testing-library/react": "^11.2.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-root-import": "^6.6.0",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.1.0",
"core-js": "3",
"css-loader": "^5.2.0",
"cypress": "^6.8.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"img-loader": "^3.0.2",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"postcss-loader": "^5.2.0",
"prettier": "^2.2.1",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.30.0",
"webpack-build-notifier": "^2.1.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.1.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"cross-env": "^7.0.3",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"sass": "^1.48.0"
},
"jest": {
"setupFiles": [
"<rootDir>/config/tests/jest.config"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/tests/file-mock.js"
}
}
}