-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
{
"name": "react-starter",
"version": "1.0.0",
"description": "React starter application",
"main": "src/js/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kohded/react-starter.git"
},
"keywords": [
"react",
"starter",
"boilerplate"
],
"author": "Arnold Koh",
"license": "MIT",
"bugs": {
"url": "https://github.com/kohded/react-starter/issues"
},
"homepage": "https://github.com/kohded/react-starter#readme",
"browserslist": [
"last 2 versions",
"> 1%"
],
"scripts": {
"clean": "rimraf ./dist/",
"dev": "webpack-dev-server --mode development --open chrome",
"prod": "npm run clean && webpack --mode production -p",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"autoprefixer": "^8.6.3",
"devicon-2.2": "^2.2.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-css-modules": "^4.7.3",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"smoothscroll-polyfill": "^0.4.3"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.0-beta.2",
"browserslist": "^3.2.8",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.1",
"node-sass": "^4.9.0",
"postcss": "^6.0.22",
"postcss-loader": "^2.1.5",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"sass-resources-loader": "^1.3.3",
"style-loader": "^0.21.0",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.1.3",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}