-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "reason-calculator",
"private": true,
"version": "2.0.0",
"repository": "wyze/reason-calculator",
"author": {
"name": "Neil Kistner",
"email": "[email protected]",
"url": "neilkistner.com"
},
"license": "MIT",
"scripts": {
"build": "run-s build:*",
"build:bsb": "bsb -make-world",
"build:parcel": "parcel build public/index.html",
"clean": "run-p clean:*",
"clean:bsb": "bsb -clean-world",
"clean:parcel": "rimraf dist lib .merlin",
"postversion": "github-release",
"pretest": "bsb -make-world",
"now-build": "yarn build",
"start": "run-p start:*",
"start:bsb": "bsb -make-world -w",
"start:parcel": "parcel public/index.html",
"test": "yarn jest",
"version": "changelog"
},
"dependencies": {
"bs-css": "^8.0.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"reason-react": "^0.7.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.8",
"@wyze/changelog": "^1.0.0",
"@wyze/github-release": "^1.0.0",
"bs-jest-dom": "^2.0.1",
"bs-platform": "^5.0.3",
"bs-react-testing-library": "^0.5.0",
"bs-webapi": "^0.14.2",
"bsb-js": "^1.1.7",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"rimraf": "^2.6.3"
},
"jest": {
"roots": [
"src"
]
}
}