-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.49 KB
/
package.json
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
{
"name": "reactive-store",
"version": "0.0.1",
"description": "A store based off Rx",
"main": "index.js",
"scripts": {
"build-dev": "webpack --config=webpack.dev.ts",
"build-dev-serve": "webpack-dev-server --config=webpack.dev.ts",
"build-prod": "webpack --config=webpack.prod.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chorobin/reactive-store.git"
},
"author": "Christopher Horobin",
"license": "ISC",
"bugs": {
"url": "https://github.com/chorobin/reactive-store/issues"
},
"homepage": "https://github.com/chorobin/reactive-store#readme",
"dependencies": {
"@types/auth0-js": "^8.11.8",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"auth0-js": "^9.8.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rxjs": "^6.3.3",
"webpack-dev-server": "^3.1.14"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/html-webpack-plugin": "^3.2.0",
"@types/webpack": "^4.4.22",
"@types/webpack-bundle-analyzer": "^2.13.0",
"@types/webpack-merge": "^4.1.3",
"babel-loader": "^8.0.4",
"html-webpack-plugin": "^4.0.0-beta.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"webpack": "^4.28.2",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.5"
}
}