-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "react-tiny-autosuggest",
"version": "2.0.0",
"description": "react tiny auto suggest component",
"main": "dist/main.js",
"files": [
"dist"
],
"scripts": {
"start": "webpack-dev-server --config webpack.dev.config.js",
"dev": "webpack-dev-server --config webpack.dev.config.js",
"build": "rm -rf dist && webpack --config webpack.prod.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/classnames": "2.2.10",
"classnames": "2.2.6",
"react": "16.7.0",
"react-dom": "16.7.0"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"@types/react": "16.9.36",
"@types/react-dom": "16.9.8",
"@types/webpack": "4.41.17",
"babel-loader": "8.0.5",
"css-loader": "0.28.9",
"fork-ts-checker-webpack-plugin": "4.1.6",
"html-webpack-plugin": "3.2.0",
"style-loader": "0.19.1",
"stylus": "0.54.5",
"stylus-loader": "3.0.2",
"ts-loader": "7.0.5",
"typescript": "3.9.5",
"webpack": "4.29.0",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.11.0"
}
}