-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 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
126
{
"name": "foodie-ui",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"heroku-postbuild": "webpack --progress --config=webpack.config.prod.js",
"start:dev": "webpack-dev-server --open --progress --config=webpack.config.dev.js",
"build": "webpack",
"build:dev": "webpack --config=webpack.config.dev.js --env dev --progress --profile --colors",
"build:prod": "webpack --config=webpack.config.prod.js --env prod --progress --profile --colors",
"test": "jest",
"updateSnapshot": "jest --updateSnapshot",
"clean": "rm -rf node_modules && npm cache clean --force",
"reinstall": "npm run clean && npm install",
"lint": "eslint . --ext .js --ext .jsx || exit 0",
"lint:fix": "eslint --fix . --ext .js --ext .jsx || exit 0",
"lint:precommit": "eslint . --ext .js --ext .jsx",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"moduleNameMapper": {
"\\.(css|less|scss)$": "<rootDir>/__mocks__/styleMock.js",
"components(.*)$": "<rootDir>/src/components/$1"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/MidnightJabber/foodie-ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MidnightJabber/foodie-ui/issues"
},
"homepage": "https://github.com/MidnightJabber/foodie-ui#readme",
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-regular": "^5.0.13",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/react-fontawesome": "0.0.20",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/react": "^3.4.8",
"apollo-cache-inmemory": "^1.2.6",
"apollo-client": "^2.3.7",
"apollo-link-http": "^1.5.4",
"dotenv-webpack": "^1.5.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"express": "^4.16.4",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"jquery": "^3.3.1",
"lodash": "^4.17.10",
"material-ui": "^1.0.0-beta.44",
"node-fetch": "^2.3.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-apollo": "^2.1.9",
"react-dom": "^16.3.2",
"react-hot-loader": "^3.0.0",
"react-loadable": "^5.4.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"reduxsauce": "^0.7.0",
"reselect": "^3.0.1",
"seamless-immutable": "^7.1.3",
"webpack": "^3.11.0",
"webpack-merge": "^4.2.1",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-hot-loader": "^1.3.9",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^2.30.1",
"html-webpack-template": "^5.6.0",
"husky": "^1.0.0-rc.8",
"image-webpack-loader": "^3.6.0",
"jest": "^21.2.1",
"jest-enzyme": "^6.0.1",
"node-sass": "^4.9.0",
"react-test-renderer": "^16.4.0",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.7",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack-dev-server": "^2.11.2",
"@storybook/react": "^3.4.8",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"babel-runtime": "^6.26.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:precommit",
"pre-push": "npm run lint:precommit"
}
}
}