-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "sendit-web",
"version": "1.0.0",
"description": "React app to log and track climbing progress",
"main": "src/index.jsx",
"repository": "git@github.com:pallavi/sendit-web",
"author": "Pallavi Shankar <pallavishankar6@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js,.jsx .",
"start": "webpack-dev-server --inline --hot"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"css-loader": "^2.0.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"node-sass": "^4.11.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.28.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.11.0",
"eslint-plugin-react": "^7.11.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.13"
}
}