-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 1.04 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
{
"name": "get-progressive-with-it",
"version": "0.1.0",
"description": "Get Progressive with it - Progressive Web App workshop course materials",
"main": "index.js",
"repository": "https://github.com/mudetroit/get-progressive-with-it.git",
"author": "Matthew LaForest <[email protected]>",
"license": "MIT",
"scripts": {
"build-watch": "parcel watch --hmr-port=39259 ./client/index.html",
"start-watch": "nodemon server/index.js",
"dev": "concurrently --kill-others \"npm run start-watch\" \"npm run build-watch\"",
"build": "parcel build ./client/index.html",
"start": "npm run build && node server/index.js"
},
"dependencies": {
"@svgr/parcel-plugin-svgr": "^5.0.1",
"body-parser": "^1.19.0",
"concurrently": "^5.0.2",
"express": "^4.17.1",
"finale-rest": "^1.1.0",
"nodemon": "^2.0.2",
"parcel-bundler": "^1.12.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"sequelize": "^5.21.3",
"sqlite3": "^4.1.1",
"web-push": "^3.4.3"
}
}