-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "tamlynscore",
"version": "1.0.0",
"description": "TamlynScore - An Archery Competition Scoring System",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "npm run clean && NODE_ENV=production webpack --config webpack.config.js",
"clean": "rm -rf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjtamlyn/tamlynscore.git"
},
"author": "Marc Tamlyn",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mjtamlyn/tamlynscore/issues"
},
"homepage": "https://github.com/mjtamlyn/tamlynscore#readme",
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"babel-loader": "^9.1.3",
"core-js": "^3.33.2",
"eslint": "^8.52.0",
"eslint-plugin-react": "^7.33.2",
"immer": "^10.0.3",
"mousetrap": "^1.6.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"use-immer": "^0.9.0",
"webpack": "^5.94.0",
"webpack-bundle-tracker": "^2.0.1",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"webpack-dev-server": "^4.15.1"
}
}