-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.81 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
{
"name": "my-tab",
"version": "1.0.0",
"description": "",
"engines": {
"node": "10.9.0",
"npm": "6.2.0"
},
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --env.API_URL=http://localhost:8000 --config ./webpack-dev.config.js --open",
"prod": "node server.js",
"build": "webpack --env.API_URL=https://my-tab-api.herokuapp.com --config ./webpack-prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-prebuild": "npm install --dev",
"heroku-postbuild": "webpack --env.API_URL=https://my-tab-api.herokuapp.com --config ./webpack-prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonathanWThom/my-tab.git"
},
"author": "Jonathan Thom",
"license": "ISC",
"bugs": {
"url": "https://github.com/JonathanWThom/my-tab/issues"
},
"homepage": "https://github.com/JonathanWThom/my-tab#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"dotenv-webpack": "^1.5.7",
"immutability-helper": "^3.0.0",
"milligram": "^1.3.0",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"react-scripts": "^1.1.5"
}
}