-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.9 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "universal-todomvc",
"version": "2.0.0",
"description": "A universal TodoMVC with React, Redux built with TypeScript.",
"main": "./app/index.server.js",
"repository": {
"type": "git",
"url": "https://github.com/cerebralix/universal-todomvc"
},
"author": {
"name": "Justin Lowery",
"email": "[email protected]"
},
"contributors": [],
"publishConfig": {
"registry": "http://npm.com"
},
"scripts": {
"build": "npm run lint && npm run transpile && npm run bundle",
"build:dev": "npm run lint && npm run transpile && npm run bundle:dev",
"bundle": "webpack --mode production",
"bundle:dev": "webpack --mode development",
"clean": "rm -rf node_modules && git clean -fX",
"clean:data": "rm -rf users",
"lint": "eslint '**/*.ts' --fix",
"start": "NODE_ENV=production node app/index.server.js",
"start:dev": "node app/index.server.js",
"test": "echo 'nothing to see here ... '",
"transpile": "tsc",
"watch": "chokidar -i 'node_modules' '**/*.{ts,tsx}' -c 'npm run build:dev' --initial"
},
"husky": {
"hooks": {
"pre-commit": "npm run transpile",
"pre-push": "npm run test && npm run build"
}
},
"dependencies": {
"body-parser": "^1.15.0",
"cookie-parser": "^1.4.1",
"express": "^4.13.3",
"express-pouchdb": "^4.1.0",
"history": "^1.17.0",
"multer": "^1.1.0",
"page": "^1.7.1",
"pouchdb": "^7.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"serve-favicon": "^2.3.0",
"superagent": "^5.1.0",
"todomvc-app-css": "^2.0.0"
},
"devDependencies": {
"@types/async": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.17.0",
"@types/express-serve-static-core": "^4.16.7",
"@types/jest": "^24.0.15",
"@types/mime": "^2.0.1",
"@types/multer": "^1.3.7",
"@types/page": "^1.8.0",
"@types/pouchdb": "^6.3.3",
"@types/proxyquire": "^1.3.28",
"@types/react": "^16.9.1",
"@types/react-dom": "^16.8.5",
"@types/serve-favicon": "^2.2.30",
"@types/serve-static": "^1.13.2",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"@typescript-eslint/typescript-estree": "^1.11.0",
"acorn": "^6.2.0",
"chokidar-cli": "^2.0.0",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"husky": "^3.0.0",
"jest": "^24.8.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.8.0",
"prettier": "^1.18.2",
"proxyquire": "^1.7.3",
"react-axe": "^3.2.0",
"react-test-renderer": "^16.8.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
}
}