-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "parallax-vanilla",
"version": "1.2.3",
"description": "Simple parallax in pure JavaScript designed for performance and dynamic sizing.",
"main": "dist/parallax-vanilla.js",
"files": [
"dist/**/*"
],
"author": "Erik Engervall [email protected] https://github.com/erikengervall",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/erikengervall/parallax-vanilla"
},
"keywords": [
"vanilla",
"javascript",
"parallax",
"animation",
"library"
],
"scripts": {
"server": "nodemon index.js",
"build": "rimraf ./dist && webpack",
"build:watch": "yarn build --watch",
"dev": "concurrently 'yarn server' 'yarn build:watch'",
"test": "jest ./test/parallax-vanilla.spec.js"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"concurrently": "^4.1.2",
"css-loader": "^3.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"express": "^4.16.2",
"jest": "^24.9.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"nodemon": "^1.12.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier-eslint": "^9.0.0",
"rimraf": "^3.0.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^1.4.2",
"ts-loader": "^6.0.4",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
}
}