-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
82 lines (82 loc) · 2.49 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
{
"name": "design-patterns-game",
"version": "1.0.0",
"dependencies": {
"prop-types": "15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "7.1.3",
"react-router-dom": "5.1.0",
"react-syntax-highlighter": "^10.3.5",
"redux": "4.0.1",
"styled-components": "^4.3.1",
"uuid": "3.3.3"
},
"scripts": {
"start": "webpack-dev-server --mode development",
"start:ci": "npm start & wait-on http://localhost:8080",
"format": "prettier --write \"src/**/*.js\"",
"stats": "webpack-bundle-analyzer stats/stats.json",
"build": "webpack --mode production",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook"
},
"jest": {
"setupFiles": [
"<rootDir>__tests__/config/configure-enzyme.js",
"<rootDir>__tests__/config/register-context.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/config/",
"<rootDir>/__tests__/helpers/",
"<rootDir>/cypress/"
]
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "7.7.4",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addon-storyshots": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-require-context-hook": "1.0.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"coveralls": "3.0.8",
"cypress": "3.6.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "3.4.3",
"eslint": "^6.0.1",
"eslint-config-react": "1.1.7",
"eslint-loader": "3.0.3",
"eslint-plugin-react": "^7.14.2",
"html-webpack-plugin": "3.2.0",
"jest": "^24.9.0",
"jest-styled-components": "^6.3.3",
"prettier": "^1.17.1",
"react-test-renderer": "16.8.6",
"redux-mock-store": "1.5.4",
"storybook-addon-styled-component-theme": "1.2.5",
"wait-on": "3.3.0",
"webpack": "^4.35.3",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
}
}