This repository has been archived by the owner on Feb 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
84 lines (84 loc) · 2.42 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
{
"name": "basic-web-app",
"version": "0.0.8",
"description": "Basic isomorphic web app code to start a project using React.js, Sass, Node.js, Express, Jest, TSLint, React Router and Webpack.",
"license": "MIT",
"author": {
"name": "Teddy Toussaint",
"email": "[email protected]"
},
"homepage": "https://github.com/ttous/basic-web-app",
"repository": {
"type": "git",
"url": "https://github.com/ttous/basic-web-app.git"
},
"bugs": {
"url": "https://github.com/ttous/basic-web-app/issues"
},
"keywords": [
"react",
"sass",
"nodejs",
"express",
"jest",
"tslint",
"react-router",
"webpack",
"typescript",
"isomorphic"
],
"main": "src/server/server.tsx",
"scripts": {
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"build": "webpack --mode production",
"start": "yarn build && node dist/server/server.js",
"dev_test": "jest --coverage",
"dev_build": "webpack --mode development",
"dev": "tslint --project . && concurrently \"yarn dev_build --watch\" \"nodemon dist/server/server.js\""
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"express": "^4.16.3",
"moment": "^2.24.0",
"pino": "^5.11.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.6",
"@types/pino": "^5.8.5",
"@types/react": "^16.8.6",
"@types/react-dom": "^16.8.2",
"@types/react-router-dom": "^4.3.1",
"@types/react-test-renderer": "^16.8.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.0.0",
"coveralls": "^3.0.3",
"css-loader": "^3.0.0",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"pino-pretty": "^3.2.0",
"react-test-renderer": "^16.8.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"ts-loader": "^6.0.4",
"tslint": "^5.13.1",
"typescript": "^3.3.3333",
"url-loader": "^2.0.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
}
}