-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
51
52
53
54
55
56
57
58
59
60
{
"name": "web-core",
"description": "Extensible framework for all web-applications",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:3010",
"dependencies": {
"antd": "3.5.4",
"history": "4.7.2",
"lodash": "4.17.5",
"node-sass": "^4.9.3",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "4.1.2",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.7",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"react-router-redux": "4.0.8",
"react-scripts": "1.1.1",
"redux": "3.7.2",
"redux-actions": "2.2.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"uuid": "3.2.1"
},
"scripts": {
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive"
},
"main": "index.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"auth-service": "github:sammler/auth-service"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammler/web-core.git"
},
"author": "Stefan Walther <[email protected]> (http://qliksite.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sammler/web-core/issues"
},
"homepage": "https://github.com/sammler/web-core#readme",
"renovate": {
"extends": [
"config:base",
"schedule:weekly"
]
}
}