forked from mamaku-2018/softwareness
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.58 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.58 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
{
"name": "softwareness",
"version": "0.1.0",
"description": "Providing self-awareness to software",
"main": "server/index",
"scripts": {
"build": "webpack --config ./client/webpack.config.js",
"dev": "nodemon server & yarn build --watch",
"knex": "knex --knexfile ./server/db/knexfile.js",
"test": "jest --watchAll",
"start": "node server",
"postinstall": "yarn build && yarn knex migrate:latest"
},
"author": "EDA",
"license": "ISC",
"babel": {
"presets": [
"env",
"react"
]
},
"jest": {
"setupFiles": [
"./tests/client/setup-env.js"
]
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"dotenv": "^6.0.0",
"express": "^4.16.2",
"express-jwt": "^5.3.1",
"heroku": "^7.6.1",
"jsdom": "^11.11.0",
"jsonwebtoken": "^8.3.0",
"jwt-decode": "^2.2.0",
"knex": "^0.15.0",
"passport": "^0.4.0",
"pg": "^7.4.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"recharts": "^1.0.1",
"redux": "^3.7.2",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.2.0",
"sodium": "^2.0.3",
"superagent": "^3.8.2",
"webpack": "^3.11.0"
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.2.2",
"nock": "^9.1.6",
"nodemon": "^1.14.12",
"sqlite3": "^4.0.1",
"supertest": "^3.0.0"
}
}