forked from Chalarangelo/30-seconds-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3 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
{
"name": "30-seconds-web",
"private": true,
"version": "1.0.0",
"description": "Website for 30-seconds projects.",
"main": "index.js",
"author": "30-seconds",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@fixture-factory/fixture-factory": "^1.0.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.1",
"babel-jest": "^27.0.6",
"chalk": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"esm": "^3.2.25",
"front-matter": "^4.0.2",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"hast-util-to-html": "^7.1.3",
"jest": "^27.0.6",
"jest-environment-jsdom": "^27.0.6",
"jest-transform-stub": "^2.0.0",
"mdast-util-to-hast": "^10.2.0",
"next": "^11.1.2",
"node-fetch": "^2.6.1",
"node-sass": "^5.0.0",
"preact": "^10.5.14",
"prettier": "^2.2.1",
"prismjs": "^1.24.1",
"prop-types": "^15.7.2",
"puppeteer": "^5.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark": "^13.0.0",
"remark-gfm": "^1.0.0",
"sharp": "^0.29.1",
"twitter": "^1.7.1",
"unist-util-visit": "^2.0.3",
"webfonts-generator": "^0.4.0"
},
"keywords": [
"30-seconds",
"snippets"
],
"license": "MIT",
"scripts": {
"prebuild": "NODE_PATH=src NODE_ENV=production npx --node-arg '-r esm' ./src/scripts/build.js",
"preexport": "NODE_PATH=src NODE_ENV=production npx --node-arg '-r esm' ./src/scripts/build.js",
"predevelop": "NODE_PATH=src NODE_ENV=development npx --node-arg '-r esm' ./src/scripts/develop.js",
"build": "NODE_PATH=src next build",
"export": "NODE_PATH=src next build; next export",
"console": "NODE_PATH=src NODE_ENV=development npx --node-arg '-r esm' ./src/scripts/console.js",
"develop": "NODE_PATH=src next dev -p 8000",
"develop:no-pre": "NODE_PATH=src next dev -p 8000",
"serve": "NODE_PATH=src next start -p 9000",
"tweet": "NODE_PATH=src NODE_ENV=tweet npx --node-arg '-r esm' ./src/scripts/tweet.js",
"create": "NODE_PATH=src NODE_ENV=production npx --node-arg '-r esm' ./src/scripts/create.js",
"lint": "eslint './src/**/*.js' './src/**/*.jsx'",
"format": "prettier --config .prettierrc --write './**/*.{js,jsx}'",
"test": "NODE_PATH=src NODE_ENV=test jest --config src/test/jest-config.json --coverage",
"test:watch": "NODE_PATH=src NODE_ENV=test jest --config src/test/jest-config.json --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/30-seconds/30-seconds-web"
},
"bugs": {
"url": "https://github.com/30-seconds/30-seconds-web/issues"
},
"browserslist": [
"> 0.5% and last 4 versions and not dead and not ie>0 and not op_mini all and not and_uc>0 and not edge<79"
],
"dependencies": {},
"engines": {
"node": ">=14.17.6"
}
}