-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "employee-timeclock",
"version": "1.0.0",
"description": "A simple portable employee timeclock app.",
"main": "index.js",
"dependencies": {
"axios": "^1.5.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"json2csv": "^6.0.0-alpha.2",
"nedb": "^1.8.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"serve-favicon": "^2.5.0"
},
"scripts": {
"init-db": "node ./init-db.js",
"start": "rimraf ./dist && webpack --mode development && node ./app.js",
"build": "rimraf ./dist && webpack --mode production && npm run init-db",
"serve": "npm start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/judahpaul16/employee-timeclock.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/judahpaul16/employee-timeclock/issues"
},
"homepage": "https://github.com/judahpaul16/employee-timeclock#readme",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"rimraf": "^5.0.1",
"style-loader": "^3.3.3",
"thread-loader": "^4.0.2",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}