-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 3.72 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
{
"private": false,
"name": "defensor-automated-testing",
"version": "0.1.3",
"description": "A React, Redux, TypeScript and Webpack starter",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TingGe/defensor-automated-testing.git"
},
"scripts": {
"clean": "rimraf dist",
"start": "yarn run start:dev",
"start:dev": "cross-env NODE_ENV=development ts-node src/server.ts",
"start:prod": "yarn run build && node dist/server.js",
"build": "yarn run clean && yarn run build:server && yarn run build:prod",
"build:server": "cross-env webpack --progress --colors --config config/server.config.js",
"build:prod": "cross-env webpack --progress --colors --mode production --config config/client.config.js",
"lint": "tslint --project tsconfig.json",
"prebuild": "npm test",
"lint:fix": "prettier --write './src/**/*.{ts,tsx,js,scss}' && tslint -c tslint.json --fix './src/**/*.{js,ts,tsx}'",
"test": "jest",
"test:coverage": "jest --coverage && codecov",
"test:createTests": "node jest/generator/index.js src/components",
"test:update-snapshot": "jest -u",
"test:generate-output": "jest --json --outputFile=.jest-test-results.json || true",
"precommit": "lint-staged",
"test:watch": "npm run test:generate-output -- --watch",
"commitmsg": "commitlint -E GIT_PARAMS",
"prebuild:storybook": "npm run test:generate-output",
"build:storybook": "build-storybook -c .storybook -o build/",
"predeploy": "npm run build:storybook",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"devDependencies": {
"@commitlint/cli": "^7.1.1",
"@commitlint/config-conventional": "^7.1.1",
"@types/enzyme": "^3.1.13",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/enzyme-to-json": "^1.5.2",
"@types/jest": "^23.3.1",
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"@types/react-hot-loader": "^4.1.0",
"@types/react-router-redux": "^5.0.15",
"@types/redux-immutable": "^3.0.38",
"@types/webpack": "^4.4.10",
"@types/webpack-env": "^1.13.6",
"awesome-typescript-loader": "^5.2.0",
"codecov": "^3.0.4",
"compression-webpack-plugin": "^1.1.11",
"conventional-changelog-cli": "^2.0.5",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-to-json": "^3.3.4",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"imagemin-lint-staged": "^0.3.0",
"jest": "^23.5.0",
"lint-staged": "^7.2.2",
"nyc": "^12.0.2",
"prettier": "^1.14.2",
"prettier-stylelint": "^0.4.2",
"rimraf": "^2.6.2",
"stylelint-config-idiomatic-order": "^5.0.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.3.0",
"ts-jest": "^23.1.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.3",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@rematch/core": "^0.6.0",
"chalk": "^2.4.1",
"express": "^4.16.3",
"history": "^4.7.2",
"immutable": "^3.8.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.3.4",
"react-redux": "^4.4.9",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"redux-logger": "^3.0.6",
"redux-thunk": "2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "TingGe<[email protected]>",
"license": "MIT"
}