-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "reactTodo",
"version": "1.0.0",
"description": "This is an advanced ReactJS todo app designed to practice some state of the art tools that would help the app run smoother, faster and with little to none expensive code",
"main": "index.js",
"scripts": {
"dev": "npx webpack-dev-server --mode development",
"build": "npx webpack --mode development",
"test": "mocha \"src/**/*.test.js\" --require @babel/register --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SambaGod/reactTodo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SambaGod/reactTodo/issues"
},
"homepage": "https://github.com/SambaGod/reactTodo#readme",
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.14.5",
"babel-loader": "^8.2.2",
"bootstrap": "^4.6.0",
"chai": "^4.3.4",
"css-loader": "^5.2.6",
"fetch-mock": "^9.11.0",
"install": "^0.13.0",
"mocha": "^9.0.0",
"node-fetch": "^2.6.1",
"npm": "^7.16.0",
"react-bootstrap": "^1.6.1",
"react-hot-loader": "^4.13.0",
"sinon": "^11.1.1",
"style-loader": "^2.0.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"styled-components": "^5.3.0"
}
}