-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "conways-game-of-life",
"version": "1.0.0",
"description": "Simple implementation of Conway's Game of Life using React with TypeScript",
"main": "index.js",
"scripts": {
"bundle": "webpack",
"test": "jest --coverage",
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production",
"lint": "eslint . --ext .tsx"
},
"repository": {
"type": "git",
"url": "https://github.com/ottD/conways-game-of-life.git"
},
"author": "David Ott",
"license": "MIT",
"dependencies": {
"@fluentui/react": "^7.106.0",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.5",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.1",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-loader": "8.1.0",
"css-loader": "3.5.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-react": "^7.19.0",
"html-webpack-plugin": "4.2.0",
"jest": "^25.3.0",
"style-loader": "1.1.3",
"ts-jest": "^25.3.1",
"typescript": "3.8.3",
"webpack": "5.94.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
}
}