-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "erts-realworld-example",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --config webpack.prod.config.js --mode production"
},
"dependencies": {
"history": "^4.7.2",
"io-ts": "^1.7.0",
"lodash": "^4.17.11",
"marked": "^0.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@types/lodash": "^4.14.120",
"@types/marked": "^0.6.0",
"@types/react": "^16.7.21",
"@types/react-dom": "^16.0.11",
"@types/react-router-dom": "^4.3.1",
"copy-webpack-plugin": "^4.6.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.16.0",
"prettier-loader": "^2.1.1",
"thread-loader": "^2.1.2",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"tslint-consistent-codestyle": "^1.15.0",
"tslint-formatter-beauty": "^3.0.0",
"tslint-immutable": "^5.1.0",
"tslint-loader": "^3.5.4",
"tslint-microsoft-contrib": "^6.0.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.2.4",
"typescript-tslint-plugin": "^0.2.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"sideEffects": false,
"prettier": {
"useTabs": false,
"semi": false,
"tabWidth": 4,
"printWidth": 100,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"singleQuote": false
}
}