-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.09 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-aspnet-core-starter",
"version": "1.0.0",
"main": "index.js",
"author": "sjorrillo",
"license": "MIT",
"scripts": {
"build": "npm run build:dev",
"build:dev": "bnr do-build:dev",
"clean": "npm cache clean && npm run rimraf -- node_modules doc coverage dist",
"clean:dist": "npm run rimraf -- dist",
"lint": "npm run lint-files -- -s node_modules/custom-tslint-formatters/formatters -t grouped 'src/client/**/*.ts' 'src/client/**/*.tsx'",
"lint-fix": "npm run lint -- --fix",
"lint-files": "tslint --project tsconfig.json",
"rimraf": "rimraf",
"start-dev": "bnr start-dev",
"start-dev:hmr": "bnr start-dev --inline --hot",
"start": "shell-exec 'npm run start-dev:hmr' 'bnr start-dev-api --hot'",
"start:dashboard": "npm run start -- --dashboard"
},
"betterScripts": {
"do-build:dev": {
"command": "bnr do-build-module webpack.config.js",
"env": {
"NODE_ENV": "development"
}
},
"do-build-module": {
"command": "babel-node ./node_modules/webpack/bin/webpack --progress --profile --config"
},
"start-dev": {
"command": "babel-node ./node_modules/webpack-dev-server/bin/webpack-dev-server --config webpack.config.js --progress --profile --watch --open --content-base src/",
"env": {
"NODE_ENV": "development",
"PORT": 3000
}
},
"start-dev-api": {
"command": "./scripts/start-api.sh",
"env": {
"ASPNETCORE_URLS": "http://*:3030",
"ASPNETCORE_ENVIRONMENT": "development"
}
}
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"i18next": "^8.4.1",
"js-yaml": "^3.8.4",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router": "3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"superagent": "^3.5.2"
},
"devDependencies": {
"@types/node": "^8.0.16",
"@types/react": "^15.0.39",
"@types/react-dom": "^15.5.1",
"@types/react-redux": "^4.4.47",
"@types/react-router": "^3.0.12",
"@types/react-router-redux": "^4.0.48",
"@types/redux-thunk": "^2.1.0",
"@types/superagent": "^3.5.3",
"@types/webpack-env": "^1.13.0",
"awesome-typescript-loader": "^3.2.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"better-npm-run": "^0.0.15",
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.5",
"custom-tslint-formatters": "^2.1.1",
"html-webpack-plugin": "^2.28.0",
"rimraf": "^2.6.1",
"shell-executor": "^4.0.0",
"tslint": "^5.7.0",
"tslint-loader": "^3.5.3",
"tslint-react": "^3.2.0",
"typescript": "^2.4.2",
"webpack": "2.6.1",
"webpack-dev-server": "^2.4.5",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0"
}
}