-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.14 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
{
"name": "idle-game-maker",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.0.3",
"@types/js-yaml": "^3.11.2",
"@types/lodash": "^4.14.116",
"@types/react": "^16.4.14",
"@types/react-redux": "^6.0.8",
"@types/react-tooltip": "^3.3.6",
"@types/sinon": "^5.0.2",
"axios": "^0.18.0",
"concurrently": "^4.1.0",
"js-yaml": "^3.12.0",
"lodash": "^4.17.11",
"pegjs": "^0.10.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-scripts": "1.1.5",
"react-tooltip": "^3.8.4",
"redux": "^4.0.0",
"redux-persist": "^5.10.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "node_modules/tslint/bin/tslint --project .",
"storybook": "start-storybook -p 8080 -s public -c src/.storybook",
"build-storybook": "build-storybook -s public",
"compile": "npx tsc",
"compile:watch" : "npm run compile -- --watch",
"build-and-test": "npx concurrently 'npx tsc --watch' 'npm test -- --watchAll a'"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.10",
"@storybook/addon-links": "^3.4.10",
"@storybook/addons": "^3.4.10",
"@storybook/react": "^3.4.10",
"@types/jest": "^23.3.2",
"@types/node": "^10.12.18",
"@types/redux-mock-store": "^1.0.0",
"@types/sinon": "^5.0.2",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"jest": "^23.6.0",
"jest-expect-message": "^1.0.2",
"jest-junit": "^5.2.0",
"node": "^10.10.0",
"redux-mock-store": "^1.5.3",
"sinon": "^6.3.4",
"ts-jest": "^23.10.2",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/config/model/**/*.*",
"!src/index.js",
"!src/registerServiceWorker.js",
"!src/stories/**/*.*",
"!src/state/actions/**/*.*",
"!src/state/reducers/RootReducer.js",
"!src/state/engine/ResourceGenerator.js",
"!src/state/*.js",
"!src/.storybook/**/*.*"
]
}
}