-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 KB
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
{
"name": "fifteen",
"version": "1.1.0",
"repository": "git@github.com:coockoo/fifteen.git",
"description": "Fifteen game",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"dev": "webpack-dev-server --config webpack.config.js",
"lint": "eslint .",
"test": "jest"
},
"keywords": [
"fifteen",
"game"
],
"author": "Oleksandr Bondarchuk <alex.coockoo@gmail.com> (https://github.com/coockoo)",
"license": "UNLICENSED",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@hot-loader/react-dom": "^16.13.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"core-js": "^3.6.5",
"css-loader": "^6.4.0",
"eslint": "^8.1.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslit": "^6.0.0",
"html-webpack-plugin": "^5.4.0",
"jest": "^27.3.1",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.4.3",
"prettier": "^2.0.4",
"regenerator-runtime": "^0.13.5",
"style-loader": "^3.3.1",
"stylelint": "^14.0.0",
"stylelint-config-standard": "^23.0.0",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"classnames": "^2.2.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.20",
"react-spring": "^8.0.27"
},
"jest": {
"modulePaths": [
"<rootDir>/src"
]
}
}