-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.69 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
{
"name": "@virtuous/react-store",
"version": "1.2.4",
"description": "A state container for React applications.",
"main": "index.js",
"repository": "[email protected]:bevirtuous/react-store.git",
"author": "devbucket <[email protected]>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --config ./sandbox/webpack.config.js",
"lint": "eslint --cache --cache-location .cache/.eslintcache src",
"test": "jest",
"test:watch": "jest --watchAll",
"cover": "jest --coverage",
"cover:serve": "npm run cover && http-server ./coverage/lcov-report -g",
"preversion": "npm run test && npm run lint",
"version": "make clean && make build && git add -A",
"postversion": "git push && git push --tags && npm publish ./dist/ --access public",
"dev": "nodemon --exec \"make build\""
},
"devDependencies": {
"@babel/cli": "~7.4.4",
"@babel/core": "~7.4.5",
"@babel/plugin-proposal-class-properties": "~7.4.4",
"@babel/plugin-proposal-object-rest-spread": "~7.4.4",
"@babel/plugin-syntax-dynamic-import": "~7.2.0",
"@babel/preset-env": "~7.4.5",
"@babel/preset-react": "~7.0.0",
"@virtuous/eslint-config": "~2.0.0",
"@virtuous/unit-tests": "~2.0.0",
"babel-loader": "~8.0.6",
"babel-plugin-transform-react-remove-prop-types": "~0.4.24",
"coveralls": "~3.0.4",
"enzyme": "~3.10.0",
"eslint": "~5.16.0",
"html-webpack-plugin": "~3.2.0",
"http-server": "~0.11.1",
"jest": "~24.8.0",
"react": "~16.8.6",
"react-dom": "~16.8.6",
"webpack": "~4.34.0",
"webpack-cli": "~3.3.4",
"webpack-dev-server": "~3.7.1"
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}