-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
69 lines (69 loc) · 2.66 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
{
"name": "atropos-src",
"version": "2.0.2",
"description": "Touch-friendly 3D parallax hover effects",
"scripts": {
"/*============ Build ============*/": "============",
"build:dev": "cross-env NODE_ENV=development node scripts/build",
"build:prod": "cross-env NODE_ENV=production node scripts/build",
"/*============ Watch ============*/": "============",
"watch:dev": "cross-env NODE_ENV=development node scripts/watch",
"watch:prod": "cross-env NODE_ENV=production node scripts/watch",
"/*============ Playground ============*/": "============",
"core": "npm run build:dev && concurrently --kill-others \"vite ./playground/core\" \"npm run watch:dev\" ",
"react": "npm run build:dev && concurrently --kill-others \"vite ./playground/react\" \"npm run watch:dev\"",
"element": "npm run build:dev && concurrently --kill-others \"vite ./playground/element\" \"npm run watch:dev\"",
"/*============ Tooling ============*/": "============",
"prettier": "prettier \"**/*.+(js|json|scss|css|less|ts|jsx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"lint": "eslint --ext .js,.jsx .",
"validate": "npm-run-all --parallel check-format lint",
"release": "npm run validate && node ./scripts/release",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -u -s",
"test": "npm run validate && npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nolimits4web/atropos.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nolimits4web/atropos/issues"
},
"homepage": "https://atroposjs.com",
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"autoprefixer": "^10.4.14",
"clean-css": "^5.3.2",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"exec-sh": "^0.4.0",
"fs-extra": "^11.1.1",
"inquirer": "^9.2.7",
"less": "^4.1.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.25.3",
"serve": "^14.2.0",
"terser": "^5.18.1",
"vite": "^4.3.9"
}
}