This repository has been archived by the owner on Sep 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.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
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
{
"name": "ts-react",
"version": "1.0.0",
"description": "ts-react-parcel",
"author": "Jackple <359310444@qq.com>",
"private": true,
"scripts": {
"test": "jest",
"add": "node ./tool/cli.js add",
"tcm": "tcm src -c -w",
"dev": "parcel index.html",
"prod": "cross-env NODE_ENV=production parcel build index.html --public-url ./",
"lint": "tslint -c tslint.json 'src/**/*[^.d$].ts*'",
"svg": "node ./tool/generator-svg.js"
},
"dependencies": {
"antd": "^3.6.3",
"axios": "^0.18.0",
"blueimp-md5": "^2.10.0",
"classnames": "^2.2.6",
"mobx": "^5.0.3",
"mobx-react": "^5.2.3",
"moment": "^2.22.2",
"normalize.css": "^8.0.0",
"qs": "^6.5.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"react-loadable": "^5.4.0",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@types/classnames": "^2.2.4",
"@types/enzyme": "^3.1.10",
"@types/jest": "^23.1.1",
"@types/node": "^10.3.4",
"@types/react": "^16.4.1",
"@types/react-dom": "^16.0.6",
"@types/react-loadable": "^5.4.0",
"@types/react-router-dom": "^4.2.7",
"@types/systemjs": "^0.20.6",
"@types/webpack-env": "^1.13.6",
"autoprefixer": "^8.6.3",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^23.1.0",
"node-sass": "^4.9.0",
"parcel-bundler": "^1.9.2",
"postcss-modules": "^1.1.0",
"stylelint": "^9.3.0",
"stylelint-config-css-modules": "^1.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.0",
"ts-jest": "^22.4.6",
"tslib": "^1.9.3",
"tslint": "^5.10.0",
"typed-css-modules": "^0.3.4",
"typescript": "^2.9.2",
"typescript-react-svg-icon-generator": "^1.1.8"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.(css|scss|less)$": "./styleMock.js"
},
"transformIgnorePatterns": [
"node_modules/",
"dist/"
],
"setupFiles": [
"raf/polyfill",
"./jestSetup.js"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}