-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 4.36 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"license": "MIT",
"name": "jsapp-boilerplate",
"version": "0.0.1",
"scripts": {
"build:github": "cross-env APP_ENV=github yarn build:optimized",
"build:optimized": "cross-env NODE_ENV=production webpack --progress --config webpack.config.js --mode production",
"build:production": "cross-env APP_ENV=production yarn build:optimized",
"build": "webpack --progress --config webpack.config.js",
"clean": "rm -rf dist",
"d:nohot": "webpack-serve --no-hot-client",
"d": "webpack-serve",
"deploy:github:prebuilt": "gh-pages --dist dist",
"deploy:github": "yarn clean && yarn build:github && yarn deploy:github:prebuilt",
"dev:nohot": "yarn d:nohot",
"dev": "yarn d",
"docker": "docker-compose up --build",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:eslint": "eslint . --ext .js --ext .jsx",
"lint:fix": "yarn lint:tslint:fix && yarn lint:eslint:fix && yarn lint:stylelint:fix",
"lint:stylelint:fix": "yarn lint:stylelint --fix",
"lint:stylelint": "stylelint '**/*.css' '**/*.scss'",
"lint:tslint:fix": "yarn lint:tslint --fix",
"lint:tslint": "tslint -c tslint.json --project tsconfig.json",
"lint": "yarn lint:tslint && yarn lint:eslint && yarn lint:stylelint && yarn tsc:check",
"test:coverage": "jest --coverage",
"test:docker": "docker-compose -f docker-compose.test.yml up --build",
"test:watch": "jest --watch",
"test": "jest",
"tsc:check-config": "tsc config/build.js config/configValues.js --noEmit --skipLibCheck --allowJs --checkJs --lib es2016",
"tsc:check:no-error": "tsc --noEmit --skipLibCheck || true",
"tsc:check": "tsc --noEmit --skipLibCheck && yarn tsc:check-config"
},
"dependencies": {
"connected-react-router": "^4.5.0",
"history": "^4.7.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^5.0.6",
"react-router": "^4.3.1",
"react-router-dom": "^4.2.2",
"redux": "^4.0.1",
"redux-thunk": "^2.2.0",
"text-encoding": "^0.7.0",
"typesafe-actions": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-3": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/enzyme": "^3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.7",
"@types/mocha": "^5.2.5",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/react-redux": "^6.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/redux-mock-store": "^1.0.0",
"@types/webpack-env": "^1.13.6",
"autoprefixer": "^9.3.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"compression-webpack-plugin": "^2.0.0",
"connect-history-api-fallback": "^1.5.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"cssnano": "^4.1.7",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-transform-stub": "^1.0.0",
"koa-connect": "^2.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.2.0",
"postcss-reporter": "^6.0.0",
"prettier": "^1.14.3",
"react-hot-loader": "^4.3.11",
"redux-mock-store": "^1.3.0",
"style-loader": "^0.23.1",
"stylelint": "^9.6.0",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.3",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-serve": "^2.0.2",
"webpack-shell-plugin": "^0.5.0"
}
}