This repository has been archived by the owner on Jan 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
108 lines (108 loc) · 2.86 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
{
"name": "dynamon",
"version": "0.3.11",
"bin": {
"dynamon": "./dynamon.js"
},
"description": "Dynamodb GUI client",
"repository": "https://github.com/deptno/dynamon.git",
"author": "Bonggyun Lee <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"start": "node server",
"start:carlo": "node bin",
"start:fe": "next",
"watch": "npm run build:env -- --watch",
"build": "npm run build:env && next build",
"build:env": "tsc -p tsconfig.env.json",
"syntax": "tsc --noEmit",
"prepare": "rm -rf .next && NODE_ENV=production npm run build"
},
"dependencies": {
"@blueprintjs/core": "^3.7.0",
"@blueprintjs/icons": "^3.2.0",
"@blueprintjs/table": "^3.2.0",
"@types/express": "^4.16.0",
"aws-sdk": "^2.347.0",
"classnames": "^2.2.6",
"clipboard-copy": "^2.0.1",
"dynalee": "^0.1.7",
"express": "^4.16.4",
"filename-logger": "^0.1.1",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.22.2",
"monaco-editor": "^0.14.3",
"next": "^8.0.0-canary.2",
"ramda": "^0.25.0",
"react": "^16.8.0-alpha.0",
"react-dom": "^16.8.0-alpha.0",
"react-ga": "^2.5.3",
"react-json-view": "^1.19.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^4.9.1",
"redux-thunk": "^2.3.0",
"tachyons": "^4.11.1",
"ws": "^6.1.0"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^23.3.3",
"@types/node": "^8.10.14",
"@types/react": "^16.7.18",
"@types/react-redux": "^5.0.21",
"@types/ws": "^6.0.1",
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"babel-loader": "^8.0.4",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"file-loader": "^2.0.0",
"inject-direnv": "^0.3.1",
"jest": "^23.6.0",
"lint-staged": "^7.0.2",
"postcss": "^7.0.5",
"postcss-preset-env": "^6.3.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"url-loader": "^1.1.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.(test|spec).(ts|tsx)"
],
"globals": {
"ts-jest": {
"babelConfig": true,
"tsConfig": "jest.tsconfig.json"
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"enzyme.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/enzyme.js",
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/mocks.js",
"\\.(css|less)$": "<rootDir>/__mocks__/mocks.js"
}
}
}