-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "iceanimation",
"version": "1.7.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "webpack --config webpack-test.config.js; mocha test-build/testBundle.js --timeout 10000; exit",
"lint": "eslint --ignore-path .gitignore . --fix",
"build": "webpack --mode production",
"serve": "node server.js",
"start": "npm run build && npm run serve",
"dev": "webpack-dev-server --mode development & nodemon server.js "
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^2.0.0",
"express": "^4.17.1",
"file-loader": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"ini": "^2.0.0",
"jquery": "^3.5.1",
"moment": "^2.24.0",
"nodemon": "^2.0.1",
"ol": "^6.3.1",
"path": "^0.12.7",
"style-loader": "^0.23.0",
"url-loader": "^1.0.1",
"webpack": "^5.72.0",
"webpack-cli": "^3.0.8"
},
"devDependencies": {
"babel-loader": "^8.0.0-beta.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.0.0",
"webpack-dev-server": "^4.9.0",
"webpack-node-externals": "^2.5.2",
"webpack-shell-plugin": "^0.5.0"
}
}