-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.7 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
46
47
48
49
50
51
52
53
{
"name": "taskRewardTimer",
"version": "1.0.0",
"description": "A timer that counts up for an obligatory task, then counts down for a reward activity. Also keeps records of time spent on various activities.",
"main": "index.js",
"scripts": {
"clear": "rimraf build",
"build:server": "webpack --config webpack.server.config.js",
"start:server": "node build/server/bundle.js",
"dev:server": "nodemon --ignore build --exec 'run-s clear build:server start:server'",
"dev:client": "webpack server --config webpack.client.config.js",
"dev": "run-p dev:client dev:server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevenharderjr/taskRewardTimer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stevenharderjr/taskRewardTimer/issues"
},
"homepage": "https://github.com/stevenharderjr/taskRewardTimer#readme",
"dependencies": {
"axios": "^0.23.0",
"express": "^4.17.1",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"run-p": "0.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"babel-loader": "^8.2.2",
"css-loader": "^6.4.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.4.2",
"rimraf": "^3.0.2",
"style-loader": "^3.3.0",
"url-loader": "^4.1.1",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
}
}