-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "silojs",
"version": "0.1.15",
"description": "Javascript Framework for React",
"main": "index.js",
"bin": {
"silo": "src/cli/app.js"
},
"scripts": {
"start": "silo start",
"test": "jest",
"test:unit": "jest unit",
"test:integration": "jest integration",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshua-williams/silojs.git#develop"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"reactjs",
"react",
"framework",
"ssr"
],
"author": "Joshua D. Williams",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshua-williams/silojs/issues"
},
"homepage": "https://github.com/joshua-williams/silojs#readme",
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.1",
"jest": "^26.6.3",
"release-it": "^14.6.1"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"babel-loader": "^8.2.2",
"commander": "^6.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^5.33.2"
},
"directories": {
"test": "tests"
}
}