-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 943 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 943 Bytes
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
{
"name": "connect-4",
"version": "0.0.0",
"description": "The Connect-4 GUI with React",
"main": "App.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx babel server/static/javascript --out-dir server/static/compiled --presets react-app/prod && npx webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ILoveBacteria/connect-4.git"
},
"author": "Moein Arabi",
"license": "ISC",
"bugs": {
"url": "https://github.com/ILoveBacteria/connect-4/issues"
},
"homepage": "https://github.com/ILoveBacteria/connect-4#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-react-app": "^3.1.2",
"babel-runtime": "^6.26.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
}
}