-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.98 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
{
"name": "xsnippet-web",
"version": "1.0.0",
"description": "Web UI for XSnippet code sharing service",
"author": "The XSnippet Team <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/xsnippet/xsnippet-web",
"bugs": {
"url": "https://github.com/xsnippet/xsnippet-web/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xsnippet/xsnippet-web.git"
},
"keywords": [
"xsnippet",
"ui",
"code",
"sharing"
],
"jest": {
"setupFiles": [
"./tests/testSetup.js"
],
"collectCoverage": true,
"coverageDirectory": "./coverage",
"moduleNameMapper": {
"^.+\\.(css|styl|svg|jpg)$": "identity-obj-proxy"
},
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "ts-jest"
}
},
"dependencies": {
"brace": "^0.11.0",
"joi": "^17.3.0",
"parse-link-header": "^1.0.1",
"react": "^16.8.6",
"react-ace": "^5.9.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.8.6",
"react-router-dom": "^4.2.2",
"react-tag-input": "^5.2.3",
"recoil": "^0.1.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.20",
"@types/parse-link-header": "^1.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^7.17.0",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^1.1.5",
"glob": "^7.1.2",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^5.0.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^0.4.0",
"style-loader": "^0.19.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"webpack": "^4.45.0",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.11.1"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext ts .",
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --open",
"test": "jest --coverage",
"devenv-start": "API_BASE_URI=\"http://localhost:8080/_api\" RAW_SNIPPET_URI_FORMAT=\"http://localhost:8080/_web-backend/snippets/%s/raw\" npm start",
"devenv-up": "docker-compose -f devenv/docker-compose.yml up"
},
"private": true
}