-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "lexi",
"description": "visual thesaurus",
"main": "app.js",
"engines": {
"node": ">=12.6.0"
},
"dependencies": {
"axios": "^0.19.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"d3": "^5.9.7",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"node-sass": "^4.12.0",
"sass-loader": "^6.0.7",
"save": "^2.4.0",
"webpack": "^4.39.1"
},
"devDependencies": {
"autoprefixer": "^9.6.1",
"babel-loader": "^7.1.5",
"css-loader": "^3.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"nodemon": "^1.19.2",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"scripts": {
"webpack": "webpack --config webpack.config.js ",
"watch": "webpack --watch --mode=development --config webpack.config.js",
"build": "webpack --config webpack.config.js --optimize-minimize",
"start": "node app.js",
"start:debug": "DEBUG=* nodemon app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jjmwhite/Lexi.git"
}
}