-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.57 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
59
60
61
{
"name": "cube-timer",
"version": "0.1.0",
"author": "xcv58",
"license": "MIT",
"scripts": {
"dev": "node server.js",
"build": "next build && node appcache.js",
"start": "NODE_ENV=production node server.js",
"deploy": "now --token=$NOW_TOKEN --name=cube-timer-$CI",
"test": "yarn lint && yarn testonly",
"testonly": "jest",
"test-watch": "yarn testonly --watch",
"lintfix": "yarn lint --fix",
"lint": "standard"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"auth0-js": "^9.10.0",
"express": "^4.16.4",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"mobx-stored": "^1.1.0",
"next": "^8.0.3",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-ga": "^2.5.7"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^24.1.0",
"codeclimate-test-reporter": "^0.5.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"jasmine-check": "^1.0.0-rc.0",
"jest": "^24.1.0",
"now": "^14.0.2",
"react-addons-test-utils": "16.0.0-alpha.3",
"react-test-renderer": "^16.8.3",
"sinon": "^7.2.6",
"standard": "^12.0.1"
},
"standard": {
"parser": "babel-eslint"
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"package.json"
],
"setupFiles": [
"./test_setup.js"
]
}
}