-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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
{
"name": "vimflowy",
"version": "0.1.0",
"private": true,
"homepage": "./",
"dependencies": {
"@types/file-saver": "^2.0.1",
"@types/jest": "^26.0.19",
"@types/node": "^12.19.11",
"@types/react-dom": "^16.9.10",
"@types/express": "^4.16.0",
"@types/sqlite3": "^2.2.33",
"@types/ws": "0.0.41",
"express": "^4.16.4",
"file-saver": "^2.0.5",
"firebase": "^8.2.1",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1",
"katex": "^0.12.0",
"localforage": "^1.9.0",
"lodash": "^4.17.20",
"node-sass": "^4.14.1",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1",
"sqlite3": "^4.1.1",
"ts-node": "^3.3.0",
"typescript": "^4.1.3",
"web-vitals": "^0.2.4",
"ws": "^6.1.2"
},
"scripts": {
"lint": "tslint --exclude 'node_modules/**/*' '**/*.ts' '**/*.tsx'",
"startprod": "ts-node --compilerOptions '{\"module\":\"commonjs\"}' server/prod.ts",
"typecheck": "tsc -p . --noEmit",
"verify": "npm run lint && npm run typecheck && npm test",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --opts test/mocha.opts",
"test-windows": "SET TS_NODE_COMPILER_OPTIONS={\"module\":\"commonjs\"}&& mocha --opts test/mocha.opts",
"watchtest": "npm test -- --reporter dot --watch",
"profiletest": "npm test -- --prof",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jquery": "^3.5.5",
"@types/katex": "^0.11.0",
"@types/lodash": "^4.14.166",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.48",
"@types/react": "^16.14.2",
"@types/react-color": "^3.0.4",
"ignore-styles": "^5.0.1",
"minimist": "^1.2.2",
"mocha": "^5.2.0",
"tslint": "^4.5.1"
}
}