forked from solomon-gumball/timeline-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.31 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": "@timelinecss/client",
"version": "0.2.0",
"private": false,
"engines": {
"node": "^18.4.0",
"npm": "^8.12.1"
},
"dependencies": {
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^0.20.0",
"@codemirror/lang-css": "^0.20.0",
"@codemirror/lang-html": "^0.20.0",
"@codemirror/state": "^0.20.0",
"@codemirror/view": "^0.20.4",
"@sentry/react": "^7.2.0",
"browserslist": "^4.18.1",
"d3-path": "^3.0.1",
"d3-scale": "^4.0.2",
"lodash": "^4.17.21",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "^6.3.0",
"uuid": "^8.3.2"
},
"scripts": {
"start": "OFFLINE_MODE=true NODE_ENV=development npx webpack serve --config webpack.development.config.js",
"start:bundle": "OFFLINE_MODE=false NODE_ENV=development npx webpack --config webpack.development.config.js --watch",
"build": "OFFLINE_MODE=false NODE_ENV=production npx webpack --config webpack.production.config.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@sentry/cli": "^2.2.0",
"@sentry/webpack-plugin": "^1.18.9",
"@svgr/core": "^6.2.1",
"@svgr/webpack": "^5.5.0",
"@types/chrome": "0.0.190",
"@types/codemirror": "^5.60.5",
"@types/d3-path": "^3.0.0",
"@types/d3-scale": "^4.0.2",
"@types/lodash": "^4.14.182",
"@types/node": "^16.11.35",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/react-router": "^5.1.18",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.5.1",
"eslint": "^8.18.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"sass-loader": "^11.1.1",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"typescript": "^4.6.4",
"typescript-plugin-css-modules": "^3.4.0",
"webpack": "^5.64.4",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.6.0"
}
}