-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
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
{
"name": "portfolio",
"version": "1.0.0",
"description": "A very work in progress personal portfolio.",
"main": "index.js",
"scripts": {
"start": "http-server ./dist",
"build": "npm run build:prod",
"build:prod": "cross-env MODE_ENV=production webpack --config ./config/webpack.prod.js",
"build:dev": "cross-env MODE_ENV=development webpack --config ./config/webpack.dev.js",
"watch": "npm run watch:prod",
"watch:prod": "cross-env MODE_ENV=production webpack --config ./config/webpack.prod.js --watch",
"watch:dev": "cross-env MODE_ENV=development webpack --config ./config/webpack.dev.js --watch",
"publish": "npm run build:prod && gh-pages -d dist",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "eslint . --ext .js,.jsx --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonathanPeterCole/Portfolio.git"
},
"author": "",
"bugs": {
"url": "https://github.com/JonathanPeterCole/Portfolio/issues"
},
"homepage": "https://github.com/JonathanPeterCole/Portfolio#readme",
"dependencies": {
"http-server": "^0.9.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"classnames": "^2.2.6",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"react-transition-group": "^4.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-merge": "^4.2.1"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": [
"standard",
"standard-react"
],
"parser": "babel-eslint"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-arrow-functions",
"@babel/plugin-proposal-class-properties"
]
}
}