-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.18 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.18 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
{
"name": "react-auth0-api",
"license": "MIT",
"version": "0.1.0",
"devDependencies": {
"autoprefixer-stylus": "^0.13.0",
"concurrently": "^3.1.0",
"react-scripts": "0.8.5",
"stylus": "^0.54.5"
},
"dependencies": {
"auth0-lock": "^10.13.0",
"axios": "^0.15.3",
"bootstrap": "^4.0.0-alpha.6",
"history": "^4.5.1",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-transition-group": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "4.0.0-beta.7",
"react-router-dom": "v4.0.0-beta.7",
"reactstrap": "^4.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/iankhor/react-auth0-api.git"
},
"scripts": {
"start": "PORT=9000 react-scripts start",
"watch": "concurrently --names \"webpack, stylus\" --prefix name \"npm run start\" \"npm run styles:watch\"",
"styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
"styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}