-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "nes-tetris-vplayer",
"version": "0.9.1",
"description": "A virtual Nintendo NES Tetris (NTSC) player to compete with",
"main": "index.js",
"repository": "https://github.com/suitougreentea/nes-tetris-vplayer",
"author": "suitougreentea",
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"concurrently": "^3.5.1",
"hyperapp": "^1.1.2",
"node-sass": "^4.7.2",
"parcel-bundler": "^1.5.1"
},
"scripts": {
"build": "parcel build src/index.html --public-url ./",
"watch": "parcel watch src/index.html --public-url ./",
"server": "http-server -c-1 dist/",
"dev": "concurrent \"yarn watch\" \"yarn server\"",
"clean": "git clean -fdx dist/"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions"
]
}
}
]
],
"plugins": [
"transform-react-jsx"
]
}
}