-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.62 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.62 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
75
76
77
78
{
"name": "palo-duro",
"version": "0.1.0",
"description": "Code Name: Palo Duro",
"main": "src/index.js",
"author": "",
"license": "UNLICENSED",
"private": true,
"scripts": {
"storybook": "start-storybook --port 5002",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"serve:dev": "webpack-dev-server --mode development",
"serve:prod": "webpack-dev-server --mode production",
"watch:dev": "webpack --watch --mode development",
"watch:prod": "webpack --watch --mode production",
"lint": "eslint --ext .jsx --ext .js src || true",
"serve": "npm run serve:dev",
"watch": "npm run watch:dev",
"build": "npm run build:dev"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-do-expressions": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@storybook/react": "^5.3.13",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"dedent": "^0.7.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.18.3",
"lodash-webpack-plugin": "^0.11.5",
"react-live": "^2.2.2",
"regenerator-runtime": "^0.13.3",
"sass-loader": "^8.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.4",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@fortawesome/free-regular-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"@material-ui/core": "^4.9.2",
"@material-ui/lab": "^4.0.0-alpha.42",
"@rehooks/component-size": "^1.0.3",
"downshift": "^5.0.0",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"numeral": "^2.0.6",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-spring": "^8.0.27",
"styled-components": "^5.0.1",
"superagent": "^5.2.1",
"use-async-effect": "^2.2.2"
}
}