-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.74 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.74 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
{
"name": "react-node-ts-seed",
"author": {
"name": "Andrew Birkholz",
"url": "https://github.com/abirkholz"
},
"version": "1.0.0",
"private": true,
"scripts": {
"build": "npm run build-client && npm run build-server",
"build-client": "npm run build-css && node config/scripts/build.js",
"build-css": "node-sass --include-path sass client/index.sass --include-path node_modules client/index.css --importer=node_modules/node-sass-tilde-importer",
"build-server": "tsc ./server/* --outDir ./build/server",
"start": "npm-run-all -p server",
"start-client": "npm-run-all -p watch-css start-js",
"start-js": "node config/scripts/start.js",
"server": "node ./build/server",
"watch-css": "npm run build-css && node-sass --include-path sass client/index.sass --include-path node_modules client/index.css --watch"
},
"dependencies": {
"animate-sass": "^0.6.6",
"express": "^4.15.4",
"morgan": "^1.8.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.2.0"
},
"devDependencies": {
"@types/autoprefixer": "^6.7.3",
"@types/express": "^4.0.37",
"@types/jest": "^20.0.8",
"@types/lodash": "^4.14.74",
"@types/morgan": "^1.7.32",
"@types/node": "^8.0.28",
"@types/react": "^16.0.5",
"@types/react-dom": "^15.5.4",
"@types/react-router": "^4.0.15",
"@types/react-router-dom": "^4.0.7",
"@types/react-transition-group": "^2.0.4",
"autoprefixer": "^7.1.4",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"chalk": "^2.1.0",
"cli-highlight": "1.1.4",
"connect-history-api-fallback": "1.3.0",
"cross-spawn": "5.1.0",
"css-loader": "0.28.7",
"detect-port": "1.2.1",
"dotenv": "^4.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "0.11.2",
"foreman": "^2.0.0",
"fs-extra": "^4.0.1",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "0.17.4",
"jest": "21.0.2",
"json-loader": "0.5.7",
"lodash": "^4.17.4",
"node-sass": "^4.5.1",
"node-sass-tilde-importer": "^1.0.0",
"npm-run-all": "^4.0.2",
"object-assign": "4.1.1",
"postcss-flexbugs-fixes": "3.0.0",
"postcss-loader": "2.0.5",
"promise": "8.0.1",
"react-dev-utils": "^4.0.1",
"react-error-overlay": "^1.0.8",
"source-map-loader": "^0.2.1",
"style-loader": "0.18.2",
"sw-precache-webpack-plugin": "^0.11.4",
"ts-loader": "^2.3.6",
"tslint": "^5.7.0",
"tslint-loader": "^3.3.0",
"tslint-react": "^3.2.0",
"typescript": "^2.5.2",
"url-loader": "0.5.9",
"webpack": "^3.5.6",
"webpack-dev-server": "2.7.1",
"webpack-manifest-plugin": "^1.3.1",
"whatwg-fetch": "2.0.3"
}
}