-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
111 lines (111 loc) · 3.33 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "gameoflife",
"version": "4.0.0",
"description": "An elegant online implementation to John Conway's Game of Life with JSXgraph",
"main": "app.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:win": "rmdir /s/q dist && vite build",
"postbuild": "ncp src/dist ./dist --filter '**/*.*'",
"release": "npm run build && npm run postbuild",
"start": "node app.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --quiet",
"backend:unit-test": "cd backend/gol-backend && npm install && npm run test",
"backend:build": "cd backend && sam build --use-container",
"backend:deploy": "cd backend && sam deploy --no-confirm-changeset --no-fail-on-empty-changeset",
"backend:integ-test": "cd backend/gol-backend && npm install && npm run integ-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leslie-Wong-H/game_of_life.git"
},
"keywords": [
"game of life",
"john conway",
"express",
"node",
"JSXGraph"
],
"author": "Leslie Wong",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Leslie-Wong-H/game_of_life/issues"
},
"homepage": "https://github.com/Leslie-Wong-H/game_of_life#readme",
"dependencies": {
"@types/file-saver": "^2.0.5",
"@xstate/react": "^2.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"file-saver": "^2.0.5",
"heroku-ssl-redirect": "0.0.4",
"i18next": "^21.6.10",
"jsxgraph": "^1.6.0",
"lodash.assign": "^4.2.0",
"mongodb": "^3.6.2",
"morgan": "^1.10.0",
"prop-types": "^15.8.1",
"react": "17.0.1",
"react-bootstrap": "^1.6.4",
"react-dom": "17.0.1",
"react-i18next": "^11.15.3",
"react-router-dom": "5.2.0",
"react-transition-group": "^4.4.2",
"xstate": "^4.30.0"
},
"devDependencies": {
"@babel/core": "7.12.16",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "7.13.5",
"@babel/preset-react": "7.12.13",
"@babel/preset-typescript": "^7.17.12",
"@testing-library/react": "^11.2.5",
"@types/jest": "^27.5.1",
"@types/react": "^17.0.2",
"@types/react-bootstrap": "^0.32.29",
"@types/react-dom": "^17.0.1",
"@types/react-router-dom": "^5.1.7",
"@types/react-transition-group": "^4.4.4",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"@vitejs/plugin-react": "2.1.0",
"babel-jest": "^26.6.3",
"eslint": "7.18.0",
"eslint-config-prettier": "8.1.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"ncp": "^2.0.0",
"prettier": "2.2.1",
"request": "^2.88.2",
"tape": "^4.13.2",
"ts-jest": "^26.5.6",
"typescript": "4.2.2",
"vite": "3.2.7",
"vite-plugin-svgr": "2.4.0"
},
"husky": {
"hooks": {
"commit-msg": "sh commit-msg"
}
},
"browserslist": [
"defaults"
]
}