-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"name": "react-providable",
"version": "1.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "npx tsc --build tsconfig.build.json",
"start:counter": "npx cross-env APP=counter webpack-dev-server --color --config examples/webpack.config.js",
"start:todo": "npx cross-env APP=todo webpack-dev-server --color --config examples/webpack.config.js"
},
"author": "Ievgen Svietikov <ievgen.svietikov@gail.com>",
"license": "MIT",
"dependencies": {
"react": "^16.9.0",
"rxjs": "^6.5.2"
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"postcss-loader": "^3.0.0",
"react-dom": "^16.9.0",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
}
}