-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 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
{
"name": "coding_exercise_react",
"version": "1.0.0",
"description": "Exercise for a kitten image slider app",
"author": "Move Inc",
"license": "ISC",
"scripts": {
"start": "webpack serve",
"build": "webpack",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/MoveInc/coding_exercise_react.git"
},
"bugs": {
"url": "https://github.com/MoveInc/coding_exercise_react/issues"
},
"homepage": "https://github.com/MoveInc/coding_exercise_react#readme",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.14",
"@babel/runtime": "^7.13.10",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^5.1.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.1",
"html-webpack-plugin": "^5.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"style-loader": "^2.0.0",
"webpack": "^5.31.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.2.3"
}
}