-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "glitchsim",
"version": "0.0.0",
"description": "",
"author": "",
"license": "ISC",
"scripts": {
"start": "cross-env NODE_ENV=development budo index.js -Pld public -- -t babelify -t envify",
"build": "cross-env NODE_ENV=production browserify -t babelify -t envify index.js >public/index.js"
},
"babel": {
"plugins": [
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-proposal-class-properties",
"@dominant/core/babelatrix",
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "d.el",
"pragmaFrag": "d.JsxFragment",
"throwIfNamespace": false
}
]
]
},
"dependencies": {
"@dominant/core": "^0.1.9",
"brace": "^0.11.1",
"twind": "^0.15.5"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-modules-commonjs": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.12.13",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"budo": "^11.6.4",
"cross-env": "^7.0.3",
"envify": "^4.1.0"
},
"publishConfig": {
"access": "private"
}
}