-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
29 lines (29 loc) · 848 Bytes
/
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
{
"name": "cra-ts-antd",
"version": "0.1.0",
"private": true,
"devDependencies": {
"awesome-typescript-loader": "^3.2.2",
"babel-core": "^6.25.0",
"babel-plugin-import": "^1.2.1",
"babel-preset-react-app": "^3.0.1",
"react-app-rewire-less": "^2.0.4",
"react-app-rewired": "^1.1.0",
"react-scripts-ts": "^2.8.0"
},
"dependencies": {
"@types/jest": "^21.1.8",
"@types/node": "^8.0.17",
"@types/react": "^16.0.31",
"@types/react-dom": "^16.0.3",
"antd": "^3.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"scripts": {
"start": "BROWSER=none react-app-rewired start --scripts-version react-scripts-ts",
"build": "react-app-rewired build --scripts-version react-scripts-ts",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
}
}