This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.59 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
{
"name": "project-template",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && webpack -p --env=prod",
"clean": "rm -rf ./dist",
"lint": "tslint src/*",
"preinstall": "NODE_ENV=dev",
"test": "mocha --require ./.preMocha.js src/**/*.test.*",
"test:watch": "mocha --require ./.preMocha.js -w --watch-extensions ts,tsx src/**/*.test.*",
"test:coverage": "nyc npm test",
"watch": "npm run clean && webpack --env=dev --watch",
"dev": "npm run clean && webpack-dev-server --env=dev",
"webpack:stats": "npm run clean && webpack --env=prod --json | webpack-bundle-size-analyzer"
},
"repository": {
"type": "https",
"url": "https://[email protected]/natergj/react-redux-typescript-antd-base-project.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"antd": "2.12.6",
"immutable": "3.8.1",
"isomorphic-fetch": "2.2.1",
"matchmedia-polyfill": "0.3.0",
"prop-types": "15.5.10",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-redux": "5.0.6",
"react-router": "4.1.2",
"react-router-dom": "4.1.2",
"redux": "3.7.2",
"redux-immutable": "4.0.0",
"ts-loader": "^2.3.3"
},
"devDependencies": {
"@types/chai": "4.0.3",
"@types/core-js": "0.9.42",
"@types/enzyme": "2.8.6",
"@types/isomorphic-fetch": "0.0.34",
"@types/jsdom": "11.0.1",
"@types/mocha": "2.2.41",
"@types/node": "8.0.24",
"@types/node-fetch": "1.6.7",
"@types/react": "15.6.1",
"@types/react-dom": "15.5.3",
"@types/react-redux": "5.0.4",
"@types/react-router": "4.0.15",
"@types/redux-immutable": "3.0.34",
"@types/sinon": "2.3.3",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-import": "1.4.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"chai": "4.1.1",
"css-loader": "0.28.5",
"enzyme": "2.9.1",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"html-webpack-plugin": "2.30.1",
"jsdom": "11.1.0",
"jsdom-global": "3.0.2",
"less": "2.7.2",
"less-loader": "4.0.5",
"mocha": "3.5.0",
"node-sass": "4.5.3",
"nyc": "11.1.0",
"react-addons-test-utils": "15.6.0",
"sass-loader": "6.0.6",
"sinon": "3.2.1",
"source-map-loader": "0.2.1",
"style-loader": "0.18.2",
"ts-node": "3.3.0",
"tslint": "5.6.0",
"tslint-eslint-rules": "4.1.1",
"tslint-react": "3.2.0",
"typescript": "2.4.2",
"webpack": "3.5.5",
"webpack-bundle-size-analyzer": "2.7.0",
"webpack-dev-server": "2.7.1"
}
}