-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.13 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
59
60
61
62
63
64
65
66
67
{
"name": "react-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.66.0",
"axios": "^0.15.3",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"body-parser": "^1.17.1",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"express-bearer-token": "^2.1.0",
"github": "^9.2.0",
"jquery": "^2.2.4",
"jwt-simple": "^0.5.1",
"mocha": "^3.3.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-google-oauth": "^1.0.0",
"pg": "^6.1.5",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.4",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"sequelize": "^3.30.2",
"supertest": "^3.0.0",
"uuid": "^3.0.1",
"webpack": "^2.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"enzyme": "^2.8.2",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-story-reporter": "^0.3.1",
"karma-webpack": "^2.0.3",
"mocha": "^3.3.0",
"react-addons-test-utils": "^15.5.1",
"supertest": "^3.0.0"
},
"scripts": {
"postinstall": "npm run webpack",
"test:client:dev": "SINGLE_RUN=false ./node_modules/karma/bin/karma start",
"test:client": "./node_modules/karma/bin/karma start",
"test:server:dev": "JWT_SECRET=foo DATABASE_URL=postgres://localhost/react_template_db_test nodemon ./node_modules/mocha/bin/mocha ./test/server --recursive",
"test:server": "JWT_SECRET=foo DATABASE_URL=postgres://localhost/circle_test ./node_modules/mocha/bin/mocha ./test/server --recursive",
"test": "npm run test:server & npm run test:client",
"webpack": "./node_modules/webpack/bin/webpack.js",
"start:dev": "npm run webpack -- -w & nodemon -r dotenv/config --ignore dist/ --ignore src/ server.js"
},
"keywords": [],
"author": "",
"license": "ISC"
}