forked from codevault12/react-typescript-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 716 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 716 Bytes
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
{
"name": "react-typescript-tutorial",
"version": "0.1.0",
"private": true,
"devDependencies": {
"react-addons-test-utils": "^15.4.2",
"react-scripts-ts": "1.0.6"
},
"dependencies": {
"@types/enzyme": "^2.7.2",
"@types/jest": "^18.1.1",
"@types/node": "^7.0.5",
"@types/react": "^15.6.6",
"@types/react-dom": "^0.14.22",
"@types/react-redux": "^4.4.36",
"enzyme": "^2.7.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
}
}