-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
{
"name": "lowpoly",
"version": "1.0.0",
"description": "LowPoly Generator",
"main": "index.js",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cojdev/lowpoly.git"
},
"keywords": [
"lowpoly",
"abstract",
"background",
"generator",
"react",
"canvas"
],
"author": "Charles Ojukwu",
"license": "ISC",
"bugs": {
"url": "https://github.com/cojdev/lowpoly/issues"
},
"homepage": "https://github.com/cojdev/lowpoly#readme",
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode production --progress",
"dev": "webpack --mode development --progress",
"watch": "webpack --mode development --progress --watch"
},
"dependencies": {
"@types/prop-types": "^15.7.5",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/styled-components": "^5.1.25",
"core-js": "^3.1.4",
"mathjs": "^10.6.3",
"polished": "^4.2.2",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.10",
"regenerator-runtime": "^0.13.3",
"styled-components": "^4.3.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"prettier": "^2.5.1",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}