-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·124 lines (124 loc) · 3.86 KB
/
package.json
File metadata and controls
executable file
·124 lines (124 loc) · 3.86 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "eonext_frontend",
"version": "0.0.1",
"description": "Code for eonext_frontend.",
"author": "EOSystem Author",
"repository": {
"url": ""
},
"license": "MIT",
"scripts": {
"dev": "yarn install && NODE_ENV=development ts-node -r tsconfig-paths/register ./devServer.ts",
"tslint-fix": "npx tslint --fix './src/**/*.{ts,tsx}'",
"tslint": "npx tslint './src/**/*.{ts,tsx}'",
"storybook": "npm run build && start-storybook -s dist -p 6006",
"build": "NODE_ENV=production npm run clean && npm run build:js",
"build:js": "webpack -p --hide-modules --config config/webpack/prod.ts",
"clean": "rimraf dist/",
"start": "node dist/server.js"
},
"keywords": [],
"dependencies": {
"@salesforce-ux/design-system": "^2.8.3",
"@salesforce/design-system-react": "^0.10.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "4.17.11",
"qs": "6.6.0",
"react-redux": "6.0.1",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"styled-components": "^4.0.2",
"typesafe-actions": "^2.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
],
"src/**/*.{ts,tsx}": [
"npx tslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "7.3.3",
"@storybook/addon-info": "^5.0.10",
"@storybook/react": "^5.0.10",
"@svgr/webpack": "^4.2.0",
"@types/compression": "0.0.36",
"@types/express": "4.16.1",
"@types/lodash": "4.14.121",
"@types/qs": "^6.5.1",
"@types/react": "16.8.4",
"@types/react-color": "2.14.1",
"@types/react-dom": "16.8.2",
"@types/react-redux": "7.0.1",
"@types/react-router": "4.4.4",
"@types/react-router-dom": "^4.3.1",
"@types/storybook__react": "^4.0.1",
"@types/styled-components": "4.1.8",
"@types/webpack": "4.4.24",
"@types/webpack-dev-middleware": "^2.0.2",
"@types/webpack-env": "1.13.7",
"@types/webpack-merge": "4.1.3",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-styled-components": "^1.8.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"compression": "1.7.3",
"css-loader": "^2.1.1",
"express": "4.16.4",
"file-loader": "^3.0.1",
"fork-ts-checker-webpack-plugin": "0.5.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.17.0",
"react": "^16.8.2",
"react-docgen-typescript-loader": "^3.1.0",
"react-dom": "^16.8.2",
"rimraf": "2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.3",
"ts-node": "8.0.2",
"tsconfig-paths": "3.8.0",
"tsconfig-paths-webpack-plugin": "3.2.0",
"tslint": "5.12.1",
"tslint-config-airbnb": "5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"typescript": "3.3.3",
"url-loader": "^1.1.2",
"webpack": "^4.29.5",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "3.2.3",
"webpack-dev-middleware": "3.6.0",
"webpack-dev-server": "3.2.0",
"webpack-hot-middleware": "^2.24.2",
"webpack-merge": "4.2.1",
"webpack-node-externals": "1.7.2",
"workbox-webpack-plugin": "^3.6.2"
}
}