-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.83 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
{
"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 type ",
"exercise-1": "cross-env CHECK_FILE='exercise-1' jest --watchAll exercise-1 type ",
"exercise-2": "cross-env CHECK_FILE='exercise-2' jest --watchAll exercise-2 type ",
"exercise-3": "cross-env CHECK_FILE='exercise-3' jest --watchAll exercise-3 type ",
"exercise-4": "start-storybook -p 6006 ",
"exercise-5a": "cross-env CHECK_FILE='exercise-5' jest --watchAll exercise-5 type ",
"exercise-5b": "start-storybook -p 6006 ",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/glob": "^5.0.35",
"@types/jest": "^23.0.0",
"@types/react": "^16.3.17",
"@types/react-dom": "^16.0.6",
"concurrently": "^3.5.1",
"cross-env": "^5.2.0",
"glob": "^7.1.2",
"jest": "^23.1.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"ts-jest": "^22.4.6",
"typescript": "^2.9.2",
"typings-tester": "^0.3.1"
},
"jest": {
"transform": {
"\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx",
"json"
],
"testRegex": "/(exercises|__tests__)/.*\\.(test|spec)\\.tsx?"
},
"devDependencies": {
"@types/storybook__addon-actions": "^3.0.3",
"@types/storybook__react": "^3.0.7",
"@storybook/addon-actions": "^3.4.7",
"@storybook/addon-links": "^3.4.7",
"@storybook/addons": "^3.4.7",
"@storybook/react": "^3.4.7",
"awesome-typescript-loader": "^4.0.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0"
}
}