-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.19 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.19 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": "react-ts",
"version": "1.0.0",
"description": "Trying out Typescript",
"main": "index.js",
"repository": {
"type": "git",
"url": "www.github.com/peterholmberg/react-typescript"
},
"author": "Peter Holmberg",
"license": "ISC",
"scripts": {
"start": "NODE_ENV=development concurrently --kill-others \"nodemon src\"",
"build": "node scripts/build",
"prod": "NODE_ENV=production NODE_PATH=./public/app node --max_old_space_size=900 public/server/server",
"test": "jest --config jest.config.json --coverage",
"test:watch": "jest --config jest.config.json --watch --coverage",
"fix": "eslint --fix app/.; exit 0"
},
"engines": {
"node": "10.x",
"npm": "6.x"
},
"dependencies": {
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.1.13",
"@types/history": "^4.7.0",
"@types/jest": "^23.3.1",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"@types/react-redux": "^6.0.6",
"@types/react-router-dom": "^4.3.0",
"@types/react-router-redux": "^5.0.15",
"autoprefixer": "~8.1.0",
"axios": "~0.18.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.13.2",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.3",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-react-transform": "~3.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-universal-import": "^1.2.7",
"babel-polyfill": "~6.13.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.2",
"classnames": "^2.2.6",
"compression": "^1.7.2",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"ejs": "^2.5.8",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.3.3",
"eslint": "~4.18.2",
"eslint-loader": "~2.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-react": "~7.7.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"history": "^4.7.2",
"ignore-loader": "^0.1.2",
"immutable": "^3.8.1",
"jest": "^22.4.0",
"node-sass": "^4.8.3",
"nodemon": "^1.17.2",
"postcss-loader": "^2.1.3",
"prettier": "^1.14.2",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "~4.3.5",
"react-redux": "^5.0.7",
"react-router-dom": "4.3.1",
"react-router-redux": "5.0.0-alpha.9",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"ts-jest": "^23.1.4",
"typescript": "^3.0.3",
"typings-for-css-modules-loader": "^1.7.0",
"typings-for-scss-modules-loader": "^1.5.1",
"webpack": "~4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-middleware": "^2.0.0",
"webpack-dev-server": "^3.1.7",
"webpack-hot-middleware": "~2.22.3",
"webpack-hot-server-middleware": "^0.5.0",
"write-file-webpack-plugin": "^4.3.2"
}
}