This repository was archived by the owner on Aug 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.87 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.87 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
{
"name": "react-interactive-tutorials",
"version": "0.1.11",
"description": "Framework for creating unobtrusive interactive tutorials for use in web apps.",
"main": "index.js",
"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_modules/webpack/bin/webpack.js --config webpack.config.js",
"build-css": "./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/uptick/react-interactive-tutorials.git"
},
"keywords": [
"react",
"interactive",
"tutorial",
"training",
"guide",
"introduction",
"intro",
"walkthrough"
],
"author": "Uptick Pty Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/uptick/react-interactive-tutorials/issues"
},
"homepage": "https://github.com/uptick/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"
},
"devDependencies": {
"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": "^3.7.0",
"webpack": "^1.12.13",
"webpack-node-externals": "^1.2.0"
}
}