freeCodeCamp/package.json

24 lines
705 B
JSON
Raw Normal View History

2018-09-05 12:30:54 +00:00
{
"name": "@freecodecamp/freecodecamp",
"version": "0.0.1",
"scripts": {
"bootstrap": "lerna bootstrap",
2018-09-26 15:01:08 +00:00
"develop": "node ./config/ensure-env.js && node develop-client-server.js",
"lint": "echo 'Warning: TODO - Define Linting.'",
"pretest": "run-s lint bootstrap",
"test": "run-p test:*",
"test:client": "echo 'Warning: TODO - Define Testing.'",
"test:curriculum": "echo 'Warning: TODO - Define Testing.'",
"test:server": "echo 'Warning: TODO - Define Testing.'"
},
2018-09-05 12:30:54 +00:00
"devDependencies": {
"eslint-config-freecodecamp": "^1.1.1",
2018-09-26 14:40:35 +00:00
"lerna": "^3.4.0",
2018-09-26 15:01:08 +00:00
"npm-run-all": "^4.1.3",
2018-09-05 12:30:54 +00:00
"tree-kill": "^1.2.0"
},
"dependencies": {
"dotenv": "^6.0.0"
2018-09-05 12:30:54 +00:00
}
}