-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.81 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.81 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
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-redux-typescript-boilerplate",
"version": "1.0.3",
"description": "react-redux-typescript-boilerplate",
"keywords": [
"react",
"redux",
"typescript",
"skeleton",
"boilerplate"
],
"author": "Jakub Sowiński <mail@jakubsowinski.com> (https://jakubsowinski.com)",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/soofka/react-redux-typescript-boilerplate.git"
},
"engines": {
"npm": ">=5.2",
"node": ">=9"
},
"scripts": {
"build": "npm run build:full",
"build:full": "npm run build:full:prod",
"build:full:dev": "npm run lint && npm run test && npm run build:clean && npm run build:dev",
"build:full:prod": "npm run lint && npm run test && npm run build:clean && npm run build:prod",
"build:dev": "cross-env environment=dev npm run build:base",
"build:prod": "cross-env environment=prod npm run build:base",
"build:base": "webpack --color",
"build:clean": "rimraf ./dist",
"start": "npm run start:dev",
"start:dev": "cross-env environment=dev node ./scripts/server/index.js",
"start:prod": "cross-env environment=prod node ./scripts/server/index.js",
"test": "jest --config ./jestconfig.json",
"test:coverage": "npm run test:clean && npm run test -- --coverage --no-cache",
"test:update": "npm run test -- --updateSnapshot",
"test:watch": "npm run test -- --watch",
"test:clean": "rimraf ./coverage",
"audit": "npm run build:clean && cross-env environment=prod mode=audit npm run build:base",
"lint": "npm run lint:ts && npm run lint:css",
"lint:js": "eslint ./scripts/**/*.js",
"lint:ts": "tslint ./src/**/*.{ts,tsx} --config ./tslintconfig.json",
"lint:css": "stylelint ./src/**/*.*css",
"clean": "npm run build:clean && npm run test:clean",
"check-version": "node ./scripts/package/checkVersion.js",
"postinstall": "npm run check-version"
},
"dependencies": {
"axios": "^0.18.1",
"babel-polyfill": "^6.26.0",
"history": "^4.7.2",
"immutable": "^3.8.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.7.2",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"@types/enzyme": "^2.7.5",
"@types/jest": "^18.1.1",
"@types/react": "^16.1.0",
"@types/react-dom": "^16.0.4",
"@types/react-router-dom": "^4.2.4",
"awesome-typescript-loader": "^5.0.0-0",
"axios-mock-adapter": "^1.14.1",
"babel-core": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"body-parser": "^1.18.2",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.10",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.17.0",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^4.0.0-alpha.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.0.6",
"identity-obj-proxy": "^3.0.0",
"imagemin-webpack-plugin": "^2.1.0",
"jest": "^18.1.0",
"node-sass": "^4.7.2",
"raf": "^3.4.0",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.7",
"semver": "^5.5.0",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.2.0",
"ts-jest": "^18.0.3",
"tslint": "^4.5.1",
"tslint-loader": "^3.6.0",
"typescript": "^2.7.1",
"webpack": "^4.1.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^2.0.10",
"webpack-dev-middleware": "^3.0.1",
"webpack-hot-middleware": "^2.21.2"
}
}