-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.32 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "asmterpreter",
"description": "Assembly Interpreter",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@types/node": "^12.0.2",
"color": "^3.1.2",
"lodash.escaperegexp": "^4.1.2",
"luxon": "^1.13.2",
"ramda": "^0.27.0",
"react": "^16.8.0 || 16.9.0-alpha.0",
"react-dom": "^16.8.6",
"webmidi": "^2.5.1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@fullhuman/postcss-purgecss": "^2.2.0",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-info": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"@types/howler": "^2.1.2",
"@types/jest": "^24.0.13",
"@types/lodash.escaperegexp": "^4.1.6",
"@types/luxon": "^1.13.0",
"@types/mockdate": "^2.0.0",
"@types/ramda": "^0.27.6",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/storybook__react": "^4.0.1",
"autoprefixer": "^9.8.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"bulma": "^0.8.2",
"jest": "^24.8.0",
"mockdate": "^2.0.2",
"node-sass": "^4.14.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-static-files-copy": "^2.3.1",
"postcss-modules": "^2.0.0",
"prettier": "^1.17.0",
"react-docgen-typescript-loader": "^3.1.0",
"react-testing-library": "^7.0.1",
"reactotron-mst": "^3.1.3",
"reactotron-react-js": "^3.3.7",
"sass": "^1.20.1",
"tailwindcss": "^1.4.6",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.0",
"typescript": "^3.4.5"
},
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"jest": {
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/tests/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/utils/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}