-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "url-directory",
"engines": {
"node": ">=10.0.0"
},
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/express": "^4.17.6",
"@types/fuzzy-search": "^2.1.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.8",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"express": "^4.17.1",
"fomantic-ui-css": "^2.8.4",
"fuzzy-search": "^3.2.1",
"handlebars": "^4.7.6",
"is-url": "^1.2.4",
"lodash": "^4.17.15",
"pm2": "^4.2.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"semantic-ui-react": "^0.88.2",
"typescript": "^3.8.3"
},
"devDependencies": {
"@testing-library/dom": "^7.2.0",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@testing-library/user-event": "^10.0.1",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"prettier": "^2.0.2"
},
"scripts": {
"build": "node_modules/.bin/tsc",
"serve": "node build/index.js",
"start": "node_modules/.bin/tsc && node_modules/.bin/pm2 start build/index.js --name url-directory",
"stop": "node_modules/.bin/pm2 stop url-directory"
}
}