-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.31 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
{
"name": "webmadeira",
"version": "1.0.0",
"description": "Is a not-for-profit conference about web development by-the-community for-the-community. The [first edition](http://webmadeira.herokuapp.com/) was back in 2016 and it is back this year at **December 29**!",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js --host 0.0.0.0",
"build": "webpack --config webpack.prod.js",
"test": "jest",
"lint": "eslint ./src",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"check": "concurrently \"npm run lint\" \"npm test\"",
"commit": "npx git-cz",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webmadeira/webmadeira.github.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/webmadeira/webmadeira.github.io/issues"
},
"homepage": "https://github.com/webmadeira/webmadeira.github.io#readme",
"jest": {
"setupFiles": [
"./jest.setup.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js"
}
},
"husky": {
"hooks": {
"pre-push": "npm run check"
}
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.4.4",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.6.0",
"copy-webpack-plugin": "^4.5.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-plugin-babel": "^4.1.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.1.4",
"prop-types": "^15.6.0",
"react": "^16.4.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-redux": "^5.0.6",
"react-responsive": "^5.0.0",
"react-test-renderer": "^16.2.0",
"redux": "^3.7.2",
"redux-mock-store": "^1.5.1",
"redux-observable": "^1.0.0",
"redux-promise-middleware": "^5.1.1",
"regenerator-runtime": "^0.12.0",
"serviceworker-webpack-plugin": "^1.0.1",
"styled-components": "^3.1.6",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.0.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7",
"webpack-merge": "^4.1.4",
"webpack-pwa-manifest": "^3.7.1"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/travis-cli": "^7.0.0",
"@storybook/addon-knobs": "^3.4.11",
"@storybook/addon-options": "^3.4.11",
"@storybook/react": "^3.4.11",
"babel-plugin-styled-components": "^1.8.0",
"commitizen": "^2.10.1",
"conventional-changelog-cli": "^2.0.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"husky": "^1.0.0-rc.12",
"storybook-readme": "^3.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}