-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.57 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "cards-exporter",
"version": "0.0.1",
"description": "Cards exporter for 'Memory Cards' project",
"main": "index.js",
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.3.0"
},
"scripts": {
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"dev": "nodemon -e ts,tsx,js,scss --exec \"yarn start\"",
"heroku-postbuild": "yarn run start:build",
"lint:prettier": "prettier --list-different --parser typescript ./pages/**.{ts,tsx}",
"lint:tslint": "tslint --project .",
"lint": "yarn lint:prettier && yarn lint:tslint",
"prettier": "prettier --parser typescript --write ./**/*.tsx",
"postinstall": "shx cp node_modules/sql.js/js/sql-memory-growth.js node_modules/sql.js/js/sql.js",
"start:build": "cross-env NODE_ENV=production next build",
"start:server": "npx cross-env NODE_ENV=production ts-node -r tsconfig-paths/register --files server.ts",
"start": "node scripts/start.js",
"test:jest": "jest",
"test:watch": "jest --watch",
"test": "yarn lint && yarn coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/memory-cards/cards-exporter.git"
},
"keywords": [
"anki"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"tslint --fix -p .",
"git add"
],
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"author": "@vvscode",
"license": "ISC",
"bugs": {
"url": "https://github.com/memory-cards/cards-exporter/issues"
},
"homepage": "https://github.com/memory-cards/cards-exporter#readme",
"dependencies": {
"@sentry/node": "^4.3.2",
"@types/enzyme": "^3.1.14",
"@types/express": "^4.16.0",
"@types/glob": "^7.1.1",
"@types/jest": "^23.3.8",
"@types/json5": "^0.0.30",
"@types/mock-require": "^2.0.0",
"@types/next": "^7.0.3",
"@types/node": "^10.12.11",
"@types/react": "^16.4.18",
"@types/react-frame-component": "^4.1.0",
"@types/react-test-renderer": "^16.0.3",
"@types/tmp": "^0.0.33",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"anki-apkg-export": "^4.0.2",
"axios": "^0.18.1",
"bootstrap": "^4.3.1",
"card-types": "https://github.com/memory-cards/card-types.git#master",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"draft-js": "^0.11.1",
"draftjs-to-html": "^0.8.4",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"express": "^4.16.4",
"fork-ts-checker-webpack-plugin": "^0.4.14",
"glob": "^7.1.3",
"html-to-draftjs": "^1.4.0",
"jest": "23.6.0",
"json5": "^2.1.0",
"next": "^7.0.2",
"node-mocks-http": "^1.7.3",
"node-sass": "^4.13.1",
"react": "^16.6.0",
"react-bootstrap-typeahead": "^3.4.7",
"react-dom": "^16.6.0",
"react-draft-wysiwyg": "^1.13.2",
"react-frame-component": "^4.1.1",
"react-test-renderer": "^16.6.0",
"shx": "^0.3.2",
"tmp": "^0.0.33",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"tsconfig-paths-jest": "^0.0.1",
"tslint": "^5.11.0",
"typescript": "3.2.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/react-bootstrap-typeahead": "^3.4.5",
"@types/react-draft-wysiwyg": "^1.12.3",
"husky": "^1.1.2",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^8.0.0",
"nodemon": "^1.18.5",
"prettier": "^1.14.3",
"ts-jest": "^23.10.4",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}