-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.16 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": "ant-design-primer",
"version": "1.0.0",
"description": "Ant Design meets The International Chuck Norris Database",
"author": "Christopher Stock <[email protected]>",
"license": "MIT",
"main": "dist/index.html",
"homepage": "https://www.mayflower.de",
"repository": "https://github.com/christopherstock/AntDesignPrimer.git",
"bugs": "https://github.com/christopherstock/AntDesignPrimer/issues",
"scripts": {
"typescript:compile": "tsc",
"webpack:dev": "webpack --mode=development --watch",
"webpack:production": "webpack --mode=production --watch",
"webpack:devserver": "webpack-dev-server --mode=development",
"typedoc:generate": "typedoc --out doc --listInvalidSymbolLinks --name \"Ant Design meets The International Chuck Norris Database, (c) 2020 Mayflower GmbH\" src/typescript",
"tslint:check": "tslint --project ./tsconfig.json --config ./tslint.json \"src/**/*.{ts,tsx}\"",
"eslint:check": "eslint \"src/**/*.{ts,tsx}\"",
"test:all": "mocha --require ts-node/register --require ignore-styles --require src/test/index.ts src/test/**/*.ts src/test/**/*.tsx",
"test:jest": "jest",
"test:jest-coverage": "jest --coverage"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.18",
"@types/moment": "^2.13.0",
"@types/node": "^9.6.48",
"@types/react": "^16.0.35",
"@types/react-dom": "^16.0.3",
"@types/webpack": "^4.4.29",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"css-loader": "^0.28.11",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^1.0",
"eslint-plugin-prefer-arrow": "^1.0",
"ignore-styles": "^5.0.1",
"jest": "^24.9.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mocha": "^5.2.0",
"react-test-renderer": "^16.10.2",
"source-map-loader": "^0.2.4",
"style-loader": "^0.20.3",
"ts-jest": "^24.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.16.0",
"typedoc": "^0.14.2",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"antd": "^3.1.6",
"moment": "^2.20.1",
"rc-scroll-anim": "^2.5.9",
"rc-tween-one": "^2.5.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"wowjs": "^1.1.3"
},
"jest": {
"verbose": true,
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/src/test/.*\\.(test|spec))\\.(ts|tsx|js|jsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testURL": "http://localhost/",
"setupFiles": [
"<rootDir>/src/test/index.ts"
]
}
}