-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.98 KB
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
{
"name": "api-introduction",
"version": "1.0.0",
"description": "Basic skeleton codebase for React applications that use TypeScript.",
"scripts": {
"preinstall": "npm set audit false",
"start": "webpack-dev-server --config webpack/dev.config.js --watch",
"build": "cross-env NODE_ENV=production webpack --config webpack/prod.config.js --progress --display-error-details --color",
"heroku-postbuild": "npm run build",
"precommit": "eslint src",
"prod": "NODE_ENV=production node server.js"
},
"repository": {
"type": "git",
"url": "git@github.com:bottega-code-school/js-builder.git"
},
"author": "Your Name Here",
"license": "MIT",
"bugs": {
"url": "https://github.com/bottega-code-school/js-builder/issues"
},
"homepage": "https://github.com/bottega-code-school/js-builder",
"dependencies": {
"@monaco-editor/react": "^4.4.5",
"@types/react": "16.9.0",
"@types/react-dom": "16.9.0",
"@types/react-router-dom": "4.3.5",
"ajv": "6.12.0",
"apexcharts": "^3.35.0",
"autoprefixer": "^9.1.0",
"axios": "0.21.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"braces": ">=2.3.1",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "5.0.4",
"cross-env": "5.2.1",
"css-loader": "^1.0.0",
"eslint": "^4.2.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.1.0",
"express": "4.17.1",
"external-svg-loader": "^1.6.1",
"extract-loader": "^2.0.1",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-react-parser": "^3.0.0",
"html-webpack-plugin": "3.2.0",
"lodash": "^4.17.21",
"postcss-loader": "^2.1.6",
"react": "16.13.1",
"react-apexcharts": "^1.4.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "16.13.1",
"react-icons": "^4.4.0",
"react-player": "^2.10.1",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"react-select": "^5.5.9",
"react-style-tag": "^3.0.1",
"react-switch": "^6.0.0",
"sass": "^1.53.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"webpack": "4.42.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "3.3.11",
"webpack-dev-middleware": "3.7.2",
"webpack-dev-server": "3.10.3",
"webpack-hot-middleware": "2.25.0",
"webpack-merge": "4.2.2"
},
"devDependencies": {
"@types/lodash": "^4.14.187",
"@types/react-beautiful-dnd": "^13.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^8.1.0",
"typescript": "^4.5.5",
"uglifyjs-webpack-plugin": "^1.2.7"
}
}