-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.96 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
{
"name": "kdm",
"version": "1.0.0",
"description": "KDM Front-End",
"main": "index.js",
"scripts": {
"build": "webpack",
"test": "jest",
"dev":
"npm run build && webpack-dev-server --inline --no-info --content-base .",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook-b": "build-storybook -c .storybook -o docs",
"prod": "webpack --config webpack.prod.config.js",
"surge": "surge --project ./public --domain thewatcher.surge.sh",
"firebase": "npm run prod && firebase deploy",
"prettier": "prettier --write \"src/**/*.{js,jsx,json,scss}\"",
"tailwind":
"./node_modules/.bin/tailwind build ./styles/tailwind.css -c ./tailwind.js -o ./styles/output.css",
"precommit": "lint-staged"
},
"lint-staged": {
"src/*.{js,jsx,json,scss}": ["prettier --write", "git add"]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@storybook/addon-knobs": "^3.2.8",
"@storybook/react": "^3.2.8",
"@storybook/storybook-deployer": "^2.0.0",
"autoprefixer": "^6.7.7",
"babel-core": "^6.5.1",
"babel-eslint": "^7.1.1",
"babel-jest": "*",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.11.0",
"css-loader": "^0.23.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-prettier": "^2.4.0",
"eslint-friendly-formatter": "^2.0.6",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^6.8.0",
"expose-loader": "^0.7.0",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.14.3",
"lint-staged": "^4.2.1",
"node-sass": "^4.5.3",
"postcss-loader": "^0.13.0",
"prettier": "^1.7.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"tailwindcss": "^0.3.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"axios": "^0.11.1",
"bootstrap": "^4.0.0-beta",
"classnames": "^2.2.5",
"date-fns": "^1.29.0",
"firebase": "^3.7.0",
"font-awesome": "^4.6.1",
"html-webpack-plugin": "^2.19.0",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-transition-group": "^15.4.2",
"react-dom": "^15.5.4",
"react-ga": "^2.1.2",
"react-redux": "^4.0.0",
"react-router": "^2.0.1",
"react-transition-group": "^1.1.3",
"react-vimeo": "^1.0.0",
"reactstrap": "^5.0.0-alpha.3",
"redux": "^3.0.4",
"redux-form": "^5.2.5",
"redux-thunk": "^2.1.0",
"underscore": "^1.8.3",
"webpack-hot-middleware": "^2.10.0"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": ["es6", "js"],
"moduleFileExtensions": ["js", "json", "es6"]
}
}