-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.07 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
{
"name": "reversi-ai",
"version": "1.0.0",
"description": "A React implementation of the Reversi game, with an AI as your opponent.",
"main": "index.js",
"repository": "git@github.com:noahtallen/othello-ai.git",
"author": "Noah Allen <noahtallen@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "rm dist/bundle.js",
"start": "parcel src/index.html",
"build-prod": "rm -rf public && parcel build src/index.html --out-dir public --no-source-maps",
"deploy": "npm run build-prod && firebase deploy --only hosting"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.14",
"babel-plugin-styled-components": "^1.10.0",
"parcel-bundler": "^1.12.3",
"typescript": "^3.4.5"
}
}