-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.08 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
{
"name": "rla-feeds",
"version": "1.1.0",
"private": true,
"dependencies": {
"body-parser": "^1.18.3",
"cookies": "^0.7.1",
"debug": "^4.1.1",
"ejs": "^2.6.1",
"express": "^4.16.4",
"fast-feed": "^1.7.0",
"promise-queue": "^2.2.5",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"request": "^2.88.0",
"source-map-support": "^0.5.10",
"split": "^1.0.1",
"sqlite": "^3.0.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/cookies": "^0.7.1",
"@types/debug": "0.0.31",
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.13",
"@types/node": "^10.12.18",
"@types/promise-queue": "^2.2.0",
"@types/puppeteer": "^1.11.2",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^7.0.0",
"@types/redux-mock-store": "^1.0.0",
"@types/request": "^2.48.1",
"@types/split": "^1.0.0",
"@types/uuid": "^3.4.4",
"acorn": "^6.4.1",
"babel-loader": "^7.1.5",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"jest": "^23.6.0",
"prettier": "^1.18.2",
"puppeteer": "^1.11.0",
"redux-mock-store": "^1.5.3",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"scripts": {
"backend-compile": "tsc --build src/tsconfig.json",
"backend-lint": "tslint 'src/**/*.ts'",
"backend-test": "jest --config=jest.backend.config.js",
"frontend-compile-production": "webpack --mode=production",
"frontend-compile-development": "webpack -w --mode=development",
"frontend-test": "jest --config=jest.frontend.config.js",
"frontend-lint": "tslint 'public/js/app/**/*.{ts,tsx}' ",
"integration-test": "jest --config=jest.integration.config.js --runInBand"
}
}