-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.8 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
{
"name": "@creatdevsolutions/cs-react-global-stores",
"version": "0.1.2",
"description": "Generic Store Provider to attach data to React Components using the react context api",
"author": "Johann Wagner, Marten Wallewein",
"main": "build/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.com",
"access": "public"
},
"files": [
"build"
],
"keywords": [
"react",
"reactjs",
"context-api",
"redux",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/creatdevsolutions/cs-react-global-stores.git"
},
"scripts": {
"start-dev": "webpack-dev-server --watch --hot --config ./config/webpack.dev.js",
"lint": "tslint src/**/* ",
"build": "npm run lint && npm run build:ts ",
"build:ts": "tsc -d --declarationDir build"
},
"devDependencies": {
"@material-ui/core": "3.5.1",
"@material-ui/icons": "^3.0.1",
"@types/classnames": "^2.2.6",
"@types/jsdom": "^11.12.0",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"@types/lodash": "^4.14.118",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^1.0.1",
"classnames": "^2.2.6",
"html-webpack-plugin": "^3.2.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"style-loader": "^0.23.1",
"ts-node": "^3.0.4",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"tslib": "^1.9.3",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"dependencies": {
"lodash": "^4.17.11"
}
}