-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.26 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.26 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
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
98
{
"name": "typescript-fullstack-boilerplate",
"version": "0.1.0",
"private": true,
"description": "Node + React + Redux with Typescript",
"author": "Matko Raguz, Axilis",
"proxy": "http://localhost:3000",
"dependencies": {
"@types/body-parser": "^1.16.2",
"@types/compression": "0.0.33",
"@types/dotenv": "^2.0.20",
"@types/errorhandler": "0.0.30",
"@types/express": "^4.0.35",
"@types/express-session": "0.0.32",
"@types/morgan": "^1.7.32",
"@types/node": "^8.0.6",
"@types/react": "^15.0.32",
"@types/react-dom": "^15.5.1",
"@types/react-redux": "^4.4.45",
"@types/react-router-dom": "^4.0.8",
"@types/redux": "^3.6.0",
"@types/redux-actions": "^1.2.6",
"autoprefixer": "7.1.0",
"body-parser": "^1.15.2",
"case-sensitive-paths-webpack-plugin": "2.0.0",
"chalk": "^1.1.3",
"clear-console": "^1.1.0",
"compression": "^1.6.2",
"css-loader": "0.28.1",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-flash": "^0.0.2",
"express-session": "^1.14.2",
"express-validator": "^3.1.3",
"lusca": "^1.4.1",
"morgan": "^1.7.0",
"node-sass": "^4.5.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.7.1",
"redux-actions": "^2.0.3",
"sass-loader": "^6.0.6",
"typescript": "^2.3.3"
},
"devDependencies": {
"@types/jest": "^20.0.0",
"@types/supertest": "^2.0.0",
"concurrently": "^3.4.0",
"dotenv": "4.0.0",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"fs-extra": "3.0.1",
"html-webpack-plugin": "2.28.0",
"jest": "20.0.3",
"nodemon": "1.11.0",
"object-assign": "4.1.1",
"postcss-flexbugs-fixes": "3.0.0",
"postcss-loader": "2.0.5",
"promise": "7.1.1",
"react-dev-utils": "^2.0.1",
"react-error-overlay": "^1.0.6",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.1",
"style-loader": "0.17.0",
"supertest": "^2.0.1",
"sw-precache-webpack-plugin": "0.9.1",
"ts-jest": "^19.0.8",
"ts-loader": "^2.0.3",
"tslint": "^5.2.0",
"tslint-loader": "^3.5.3",
"tslint-react": "^3.0.0",
"url-loader": "0.5.8",
"webpack": "2.6.0",
"webpack-dev-server": "2.4.5",
"webpack-manifest-plugin": "1.1.0",
"whatwg-fetch": "2.0.3"
},
"scripts": {
"start": "npm run build && node dist-node/server.js",
"build": "npm run react-build && npm run node-build",
"rstart": "node react/config/scripts/start.js -s",
"nstart": "npm run node-start -s",
"test": "jest",
"react-clean": "rimraf dist-react",
"react-build": "npm run react-clean && node react/config/scripts/build.js",
"react-test": "jest react",
"node-start": "npm run node-build && npm run node-watch",
"node-clean": "rimraf dist-node",
"node-build": "npm run node-clean && npm run node-build-ts",
"node-build-ts": "tsc --p node/config/tsconfig.json",
"node-lint": "tslint -c tslint.json -p node/config/tsconfig.json",
"node-watch": "concurrently -k -p \"[{name}]\" -n \"Type,Node\" -c \"cyan.bold,green.bold\" \"npm run node-watch-ts\" \"nodemon dist-node/server.js -q\" --kill-others",
"node-watch-ts": "tsc -w --p node/config/tsconfig.json",
"node-test": "jest node"
}
}