forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.42 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "overmind-website",
"private": true,
"version": "1.0.0",
"description": "Overmind website",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"license": "MIT",
"repository": "git+https://github.com/cerebral/overmind.git",
"scripts": {
"start": "node backend/index",
"dev": "concurrently \"node backend/index.js\" \"webpack-dev-server --port 4000 --mode development --hot --inline\"",
"build": "webpack --mode=production",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"posttest": "npm run typecheck"
},
"now": {
"files": [
"api",
"backend",
"examples",
"guides",
"src",
"package.json",
"tsconfig.json",
"videos.json",
"webpack.config.js"
]
},
"keywords": [
"overmind",
"demo"
],
"dependencies": {
"@types/node": "^10.5.1",
"express": "^4.16.3",
"install": "^0.12.1",
"marksy": "^6.1.0",
"npm": "^6.3.0",
"overmind-react": "next",
"overmind-themes": "next",
"page": "^1.8.6",
"preact": "^8.3.1",
"preact-compat": "^3.18.4",
"prismjs": "^1.15.0",
"styled-components": "^3.3.3"
},
"devDependencies": {
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"concurrently": "^3.6.1",
"raw-loader": "^0.5.1",
"ts-loader": "^4.4.2",
"tslib": "^1.9.3",
"typescript": "^2.9.2",
"url-loader": "^1.0.1",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.5",
"html-webpack-plugin": "^3.2.0"
}
}