-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.25 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "project",
"version": "1.0.0",
"description": "\"# reactSkill\"",
"main": "index.js",
"scripts": {
"test": "jest --watch --config jest.config.js",
"webpack": "webpack",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.config.js",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"dev": "cross-env NODE_ENV=development node ./bin/dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/profAlexGit/reactSkill.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/profAlexGit/reactSkill/issues"
},
"homepage": "https://github.com/profAlexGit/reactSkill#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@hot-loader/react-dom": "^16.13.0",
"@types/jest": "^25.2.1",
"autoprefixer": "^10.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.3.0",
"jest": "^26.0.1",
"less": "^3.11.1",
"less-loader": "^6.0.0",
"lint-staged": "^10.4.0",
"postcss-loader": "^4.0.2",
"react-hot-loader": "^4.12.21",
"style-loader": "^1.2.1",
"ts-jest": "^25.5.0",
"ts-loader": "^7.0.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"browserslist": "^4.14.3",
"express": "^4.17.1",
"nodemon": "^2.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0"
}
}