-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "meetup-utils",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:alexadam/meetup-utils.git",
"author": "<[email protected]>",
"license": "MIT",
"dependencies": {
"canvg": "^1.5.3",
"jspdf": "^1.5.3",
"qrious": "^4.0.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-edit-inline": "^1.0.8"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@babel/preset-stage-0": "^7.8.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"dev": "export NODE_PATH=\"./node_modules\" && webpack-dev-server --port=8080 --inline --progress --colors --mode=\"development\"",
"build": "export NODE_PATH=\"./node_modules\" && npm run clean && webpack --progress -p --mode=\"production\"",
"clean": "rm -rf dist/*"
}
}