-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 804 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 804 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
{
"name": "autocomplete",
"version": "1.0.0",
"main": "index.js",
"author": "Tristan Matthias <hello@tristanmatthias.com>",
"license": "MIT",
"scripts": {
"start": "node api/server.js",
"build": "webpack --mode production",
"dev": "webpack-dev-server"
},
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack": "^4.43.0"
},
"devDependencies": {
"html-webpack-plugin": "^4.3.0",
"styled-components": "^5.1.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}