-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
96 lines (96 loc) · 3.27 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "javascript-playgrounds",
"version": "1.2.8",
"description": "Interactive JavaScript sandbox",
"main": "dist/javascript-playgrounds.js",
"files": [
"dist",
"public"
],
"types": "dist/src/components/embed/Playground.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config webpack/webpack.config.js --inline --hot --colors --quiet",
"start": "python3 -m http.server -d public 8080",
"build": "npm run build:core && npm run build:embed",
"build:core": "webpack --env production --config webpack/webpack.config.js --sort-assets-by --progress",
"build:embed": "webpack --config webpack/webpack-embed.config.js --sort-assets-by --progress",
"clean": "rm -rf ./dist ./public",
"prepublishOnly": "npm run clean && npm run build",
"gh-pages": "npm run prepublish && gh-pages -d public",
"analyze": "webpack --env production --config webpack/webpack.config.js --sort-assets-by --progress --profile --json > stats.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dabbott/javascript-playgrounds.git"
},
"author": "[email protected]",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dabbott/javascript-playgrounds/issues"
},
"homepage": "https://github.com/dabbott/javascript-playgrounds#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@juggle/resize-observer": "^3.1.3",
"@types/babel__core": "^7.1.10",
"@types/codemirror": "^0.0.97",
"@types/diff": "^4.0.2",
"@types/inline-style-prefixer": "^5.0.0",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"@types/react-inspector": "^4.0.1",
"@types/react-loadable": "^5.5.3",
"@types/scriptjs": "^0.0.2",
"babel-cli": "^6.3.17",
"babel-core": "^6.26.3",
"babel-eslint": "^4.1.6",
"babel-loader": "7.1.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-native": "^1.9.0",
"babel-preset-stage-1": "^6.3.13",
"babel-runtime": "^6.3.19",
"codemirror": "^5.54.0",
"codesandbox": "^2.2.1",
"css-loader": "^3.5.3",
"diff": "^4.0.1",
"eslint": "^1.10.3",
"eslint-config-standard": "^4.4.0",
"eslint-config-standard-react": "^1.2.1",
"eslint-plugin-react": "^3.13.1",
"eslint-plugin-standard": "^1.3.1",
"file-loader": "^6.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.3.0",
"inline-style-prefixer": "^6.0.0",
"metro-react-native-babel-preset": "^0.59.0",
"packly": "^0.0.1",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.1",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-inspector": "^5.0.1",
"react-loadable": "^5.5.0",
"react-native-web": "0.11.4",
"regenerator-runtime": "^0.9.5",
"screenfull": "^4.2.0",
"scriptjs": "^2.5.8",
"snarkdown": "^1.2.2",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.3",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"worker-loader": "^3.0.2"
},
"dependencies": {},
"prettier": {
"singleQuote": true,
"semi": false
}
}