-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "docker-ui-demo",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:slightlytyler/docker-ui-demo.git",
"author": "Tyler Martinez <slightlytyler@gmail.com>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack --env.api-url https://api.thecatapi.com",
"dev": "webpack-dev-server",
"fmt": "prettier --write \"**/*.{js,json}\"",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-dom": "^2.1.1",
"prettier": "^1.15.2",
"react-testing-library": "^5.2.3",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"@emotion/core": "^10.0.0-beta.13",
"@emotion/styled": "^10.0.0-beta.13",
"axios": "^0.18.0",
"react": "^16.6.3",
"react-dom": "^16.6.3"
}
}