-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "toy-robot",
"version": "0.0.0",
"description": "toy-robot react implementation",
"license": "MIT",
"private": true,
"repository": "https://github.com/pmonty/toy-robot.git",
"author": "paul.montagna <[email protected]>",
"scripts": {
"clean": "shx rm -rf ./.fusebox ./dist",
"develop": "yarn run clean && ts-node -T fuse",
"prod": "yarn run clean && ts-node -T fuse dist",
"stage": "yarn run clean && ts-node -T fuse preview",
"test": "jest",
"test:watch": "yarn run test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-typescript": "^7.6.0",
"babel-jest": "^24.9.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.4",
"@testing-library/react-hooks": "^2.0.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.2",
"@types/reactstrap": "^8.0.4",
"@types/redux": "^3.6.0",
"@types/styled-components": "^4.1.19",
"bootstrap": "^4.3.1",
"cross-env": "^6.0.0",
"fuse-box": "^4.0.0-next.132",
"jest": "^24.9.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-spring": "^8.0.27",
"reactstrap": "^8.0.1",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"shx": "^0.3.2",
"styled-components": "^4.4.0",
"terser": "^4.3.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslib": "^1.10.0",
"typesafe-actions": "^4.4.2"
},
"jest": {
"preset": "react"
}
}