-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
{
"name": "myface",
"private": true,
"dependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"react": "^16.9.0",
"react-actioncable-provider": "^2.0.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"webpack": "^4.40.2"
},
"description": "This README would normally document whatever steps are necessary to get the application up and running.",
"version": "1.0.0",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": "8.9.4",
"npm": "5.6.0"
},
"scripts": {
"server": "rails s",
"frontend": "webpack --watch --mode=development",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"postinstall": "webpack"
},
"author": "Andy Wynkoop",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.1",
"webpack-cli": "^3.3.8"
}
}