forked from Aerolab/tutorial-navigator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "auth0-tutorial-navigator",
"version": "3.9.3",
"private": true,
"main": "index.js",
"description": "Auth0's quickstarts",
"dependencies": {
"auth0-styleguide": "auth0/styleguide#4.8.6",
"flux": ">=2.1.1",
"fluxible-addons-react": "^0.2.8",
"fluxible-plugin-service-proxy": "^1.1.0",
"fluxible-router": "^0.4.14",
"jsonp": ">=0.2.0",
"lodash": ">=3.10.1"
},
"peerDependencies": {
"fluxible": "^1.1.0",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"devDependencies": {
"babel": "^4.6.0",
"babelify": "^6.4.0",
"browserify-global-shim": "^1.0.0",
"browserify-shim": "^3.8.11",
"bump-version": "^0.5.0",
"grunt": "^0.4.5",
"grunt-aws-s3": "^0.14.0",
"grunt-browserify": "^4.0.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-stylus": "^0.22.0",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-env": "^0.4.4",
"grunt-http": "^1.6.0",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"reactify": "^1.1.1",
"unreleased": "^0.1.0"
},
"scripts": {
"start": "serve --port ${PORT|3000} example",
"build": "grunt build-both",
"test": "./node_modules/.bin/mocha --compilers js:babel/register --require ./test/setup-dom.js --recursive test/**/*.js",
"dev": "grunt dev",
"deploy": "./bin/deploy",
"deploy-dev": "npm run cdn-dev",
"cdn": "grunt cdn",
"cdn-dev": "grunt cdn_dev",
"compile": "babel -d lib/ src/",
"watch": "babel -w -d lib/ src/",
"postinstall": "npm run compile"
}
}