This repository was archived by the owner on Apr 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 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
{
"name": "captain-staffing",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/theodo/captain-staffing.git"
},
"homepage": "https://theodo.github.io/captain-staffing",
"license": "MIT",
"author": "Nicolas Girault",
"private": true,
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"enzyme": "^2.7.0",
"enzyme-to-json": "^1.4.5",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"jest": "^18.1.0",
"lint-staged": "^3.2.6",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.4.2",
"react-scripts": "0.2.1"
},
"dependencies": {
"bulma": "^0.4.1",
"date-fns": "^1.3.0",
"fixed-data-table": "^0.6.3",
"lodash": "^4.15.0",
"moment": "^2.17.1",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"scripts": {
"env:dev": "cp src/configs/config.dev.js src/configs/config.js",
"env:prod": "cp src/configs/config.prod.js src/configs/config.js",
"start": "npm run env:dev && react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"deploy": "./deploy.sh",
"test": "jest --config .jestrc --verbose --watch",
"lint": "eslint -- .",
"lint:staged": "lint-staged"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.js": "lint"
}
}