-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "oh-my-desk-landing",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/AhKi/oh-my-desk-landing.git",
"author": "hyunmoahn",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --hot --inline --mode development --config ./webpack.dev.config.js",
"build": "NODE_ENV=production webpack --mode production --config ./webpack.prod.config.js",
"lint": "eslint app --ext .js,.jsx",
"precommit": "lint-staged",
"prepush": "yarn lint"
},
"lint-staged": {
"*.{js,jsx}": "eslint"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"html-webpack-plugin": "^3.0.4",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"webpack-merge": "^4.1.2"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"node-sass": "^4.7.2",
"postcss-loader": "^2.1.1",
"react-hot-loader": "^4.0.0",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^6.0.7",
"sass-resources-loader": "^1.3.3",
"style-loader": "^0.20.2",
"webpack-dev-server": "^3.1.0"
}
}