-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "react-memory-game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"validate": "npm run lint && npm run test",
"start": "webpack-dev-server --env.NODE_ENV=development --progress",
"lint": "npm run lint-css && npm run lint-js",
"lint-js": "npx eslint --ext .jsx --ext .js .",
"lint-css": "npx stylelint \"**/*.scss\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "",
"license": "ISC",
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@storybook/addon-actions": "^6.0.26",
"@storybook/addon-essentials": "^6.0.26",
"@storybook/addon-links": "^6.0.26",
"@storybook/react": "^6.0.26",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.3",
"node-sass": "^4.14.1",
"react-is": "^16.13.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.3.0",
"stylelint": "^13.7.2",
"stylelint-config-sass-guidelines": "^7.1.0",
"svg-inline-loader": "^0.8.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}