-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 KB
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
41
42
43
44
45
{
"name": "ssff.net",
"version": "1.0.0",
"description": "ssff",
"main": "index.js",
"scripts": {
"build-watch": "parcel watch ./client/index.html",
"start-watch": "nodemon server/server.ts",
"dev": "concurrently --kill-others \"npm run start-watch\" \"npm run build-watch\"",
"prebuild": "rm -rf dist",
"build": "parcel build ./client/index.html && tsc",
"start": "npm run build && node server/server.js"
},
"author": "Larry Joy",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.14.9",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.8",
"@types/react-router": "^5.1.15",
"bootstrap": "^5.1.1",
"parcel-bundler": "^1.12.5",
"react": "^17.0.2",
"react-bootstrap": "^1.6.3",
"react-dom": "^17.0.2",
"typescript": "^4.4.3"
},
"dependencies": {
"@azure/communication-sms": "^1.0.0",
"axios": "^0.21.4",
"concurrently": "^6.2.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"mssql": "^7.2.1",
"nodemon": "^2.0.12",
"prop-types": "^15.7.2",
"react-icons": "^4.2.0",
"react-router-dom": "^5.3.0",
"styled-components": "^5.3.1"
}
}