-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "grid-viz",
"version": "0.0.1",
"description": "Visualisation of a Grid Problem",
"main": "index.js",
"author": "[email protected]",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack --progress --profile --colors --mode production",
"test": "jest",
"test:watch": "jest --watch",
"start": "webpack-dev-server --mode development"
},
"dependencies": {
"react": "^16.13.1",
"react-color": "^2.18.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^16.9.8",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.2.2",
"react-test-renderer": "^16.13.1",
"ts-jest": "^26.1.4",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}