-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "ts-workshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "jest --watchAll",
"exercise-0": "cross-env CHECK_FILE='exercise-0' jest --watchAll exercise-0",
"exercise-1": "cross-env CHECK_FILE='exercise-1' jest --watchAll exercise-1",
"exercise-2": "cross-env CHECK_FILE='exercise-2' jest --watchAll exercise-2",
"exercise-3": "cross-env CHECK_FILE='exercise-3' jest --watchAll exercise-3",
"exercise-4": "start-storybook -p 6006 ",
"exercise-5a": "cross-env CHECK_FILE='exercise-5' jest --watchAll exercise-5",
"exercise-5b": "start-storybook -p 6006 ",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/glob": "*",
"@types/jest": "*",
"@types/react": "*",
"@types/react-dom": "*",
"concurrently": "*",
"cross-env": "*",
"glob": "*",
"jest": "*",
"react": "*",
"react-dom": "*",
"ts-jest": "*",
"typescript": "*"
},
"jest": {
"transform": {
"\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/ts-jest"
},
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx",
"json"
],
"testRegex": "/(exercises|__tests__)/.*\\.(test|spec)\\.tsx?"
},
"devDependencies": {
"@storybook/addon-actions": "*",
"@storybook/addon-links": "*",
"@storybook/addons": "*",
"@storybook/react": "*",
"@types/storybook__addon-actions": "*",
"@types/storybook__react": "*",
"babel-core": "*",
"babel-runtime": "*",
"ts-loader": "^9.4.4"
}
}