-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "repeater",
"version": "1.0.0",
"description": "Shadowing practice using WebAudio",
"main": "index.js",
"repository": "https://github.com/mpontus/repeater",
"author": "Mikhail Pontus",
"license": "MIT",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html --public-url '.'",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"gh-pages": "^1.2.0",
"jest": "^23.5.0",
"node-gyp": "^10.0.1",
"parcel-bundler": "^1.12.5",
"postcss-css-variables": "^0.11.0",
"ts-jest": "^23.1.4",
"typescript": "^3.0.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"@cycle/dom": "^23.1.0",
"@cycle/isolate": "^5.2.0",
"@cycle/run": "^5.7.0",
"@cycle/storage": "^5.1.2",
"autoprefixer": "^9.2.0",
"normalize.css": "^8.0.0",
"postcss": "^7.0.5",
"postcss-input-range": "^4.0.0",
"snabbdom-pragma": "^2.7.0",
"src": "^1.1.2",
"xstream": "^11.14.0"
},
"packageManager": "yarn@4.1.0",
"resolutions": {
"nan": "2.18.0",
"xstream": "11.7.0"
}
}