forked from dev-academy-challenges/react-minimal
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 897 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 897 Bytes
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
{
"name": "react-minimal",
"version": "0.1.0",
"description": "the essence of a react component",
"repository": "https://github.com/dev-academy-challenges/react-minimal.git",
"main": "index.js",
"scripts": {
"start": "node server & webpack --watch"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"keywords": [],
"author": "EDA",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"express": "^4.16.4"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}