forked from uptick/react-interactive-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.16 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
{
"name": "react-interactive-tutorials-cont",
"version": "0.1.30",
"description": "Framework for creating unobtrusive interactive tutorials for use in web apps. Original Project: https://github.com/uptick/react-interactive-tutorials.git",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"publish-demo": "git branch -D gh-pages; git push origin --delete gh-pages; git checkout -b gh-pages; cd demo-site; yarn; npm run build; cd ..; git add .; git add -f demo-site/dist; git add -f demo-site/node_modules/uptick-demo-site/dist; git commit -m \"Demo site build\"; git push origin gh-pages; git checkout master; git push origin `git subtree split --prefix demo-site gh-pages`:gh-pages --force;",
"test": "echo \"Error: no test specified\" && exit 1",
"build-js": "node ./node_modules/webpack/bin/webpack.js --mode production --config webpack.config.js",
"build-css": "node ./node_modules/node-sass/bin/node-sass src/style.sass dist/react-interactive-tutorials.css",
"build": "npm run build-js && npm run build-css",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csaq5507/react-interactive-tutorials.git"
},
"keywords": [
"react",
"interactive",
"tutorial",
"training",
"guide",
"introduction",
"intro",
"walkthrough"
],
"author": "Uptick Pty Ltd, Ivan Waldboth",
"license": "MIT",
"bugs": {
"url": "https://github.com/csaq5507/react-interactive-tutorials/issues"
},
"homepage": "https://github.com/csaq5507/react-interactive-tutorials#readme",
"dependencies": {
"classnames": "^2.2.5",
"clone": "^1.0.2",
"jquery": "^3.1.1",
"js-cookie": "^2.1.2",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"typescript": "^4.3.2"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.16.0",
"node-sass": "^6.0.0",
"ts-loader": "^8.1.0",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^1.2.0"
}
}