-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.06 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
{
"name": "checkers",
"version": "2.0.0",
"description": "Checkers in JavaScript",
"scripts": {
"clean": "rm -rf lib static/*-bundle.{js,js.map}",
"build:client": "NODE_ENV=production webpack",
"build:server": "NODE_ENV=production tsc",
"start": "NODE_ENV=production node ./lib/server.js",
"start:dev": "NODE_ENV=development node --require ts-node/register ./src/server.ts",
"test": "jest",
"format": "prettier --write ./src/**/*.{ts,tsx}",
"lint": "eslint --config .eslintrc.js ./src",
"types": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/polgfred/checkers-js.git"
},
"author": "Frederick Polgardy <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"classnames": "^2.3.1",
"core-js": "^3.23.3",
"css-loader": "^6.7.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-postcss-modules": "^2.0.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.1",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.13.9",
"style-loader": "^3.3.1",
"svg-react-loader": "^0.4.6",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.3"
},
"dependencies": {
"esm": "^3.2.25",
"express": "^4.18.1"
}
}