-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.52 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
{
"name": "javascript-asteroids",
"version": "0.0.1",
"description": "A single page application of the game of Asteroids.",
"main": "app.js",
"repository": "git@github.com:hughes-ch/asteroids.git",
"author": "hughes-ch <contact@chrishughesdev.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"babel": "^6.23.0",
"jest": "^27.2.4",
"jest-fetch-mock": "^3.0.3"
},
"scripts": {
"api-test": "yarn build && pytest -v --cov=api/src --cov-report=term-missing",
"api-install": "python3 -m pip install -r requirements.txt",
"build": "yarn api-install && webpack",
"db-init": "export FLASK_APP=api/src && flask db-init",
"db-add": "export FLASK_APP=api/src && flask db-add",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"js-test": "jest --coverage",
"test": "yarn js-test && yarn api-test",
"start-flask": "yarn build && export FLASK_APP=api/src && export FLASK_ENV='development' && flask run --host 0.0.0.0 -p 3000",
"host": "yarn build && export FLASK_APP=api/src && flask run"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"@nastyox/rando.js": "^2.0.5",
"collections": "^5.1.12",
"crypto-browserify": "^3.12.0",
"earcut": "^2.2.3",
"enumify": "^2.0.0",
"just-clone": "^3.2.1",
"mathjs": "^9.5.0",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0"
}
}